Problem Record Today I was going to complete a small component similar to a progress bar. The prototype is like this (here it is 200px long and 28px high) When I saw it, it was very simple. Leaving aside the style of the number 1, the overall parent style is a div with a semicircle on the left and an arc on the right. I'm stupid, that's not right, I thought it was like this In fact, the browser looks like this Something is wrong. The angle on the right has been set, but why does it look like it’s not set at all? I changed 8 to 10px and tried it again, but it’s still almost the same as if it wasn’t set at all. 8px should give a noticeable curvature. Let's set all to 8px and see. Yes, this is the curvature that 8px should have. Why does it change when it is changed to 50px on the left? Is it related to 50px? With doubts, I looked at Baidu. Baidu said that the complete way to write border-radius (w3c) is border-radius: 1-4 length|% / 1-4 length|%; Usually we write border-radius: 50px, in fact, the complete writing should be: border-radius : 50px 50px 50px 50px / 50px 50px 50px 50px 50px; The four values before the “/” represent the horizontal radius of the fillet, and the following four values represent the vertical radius of the fillet. Each order corresponds to (horizontal radius: top left, top right, bottom right, bottom left)/(vertical radius: top left, top right, bottom right, bottom left), What are the horizontal radius and vertical radius? According to the ratio of the horizontal radius to the vertical radius, the curvature of the angle can be adjusted. If the radii of the two are the same, it is a rounded corner. This is why I usually set the corners to be rounded, because I have never written a complete For example, border-radius:10px 20px 30px 40px/40px 30px 20px 10px It's like this Let’s look back at our previous question. We ignored the height of 28px. So, if we want to set the right side to be a semicircle, wouldn't it be fine as long as the horizontal and vertical radii are both 14px? border-radius: 14px 8px 8px 14px / 14px 8px 8px 14px; In this way, the parent style is correct. The 8px rounded corners set on the right side before seem to have no effect. Maybe it is proportionally compressed compared to 50px, because the left side is originally 28px high, and a radius of 50px is inserted into it. I calculated (14 * 8 / 50 = 2.24), which is equivalent to setting border-radius: 14px 2.24px 2.24px 14px / 14px 2.24px 2.24px 14px; Be careful when writing styles in the future, small problems can become big ones. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: 5 common scenarios and examples of JavaScript destructuring assignment
>>: Detailed steps to install CentOS7 system on VMWare virtual machine
The load is generally estimated during system des...
Why are the SQL queries you write slow? Why do th...
This article tests the environment: CentOS 7 64-b...
Table of contents 1. Usage of keep-alive Example ...
Nine simple examples analyze the use of HTML form...
Install boost There are many ways to call C/C++ f...
Table of contents 1. Implementation Background 2....
Table of contents 1. What is a cursor? 2. How to ...
JavaScript clothing album switching effect (simil...
Often, we may need to export local database data ...
MQTT Protocol MQTT (Message Queuing Telemetry Tra...
background A new server was added in the company,...
Introduction to CentOS CentOS is an enterprise-cl...
Table of contents 1. Vertical (longitudinal) slic...
html2canvas is a library that generates canvas fr...