Home > Article > Web Front-end > Detailed explanation of the border-radius attribute of CSS style
Possible Values: pixels, percentage
html code
e388a4556c0f65e1904146cc1a846bee94b3e26ee717c64999d7867364b1b4a3
css code
p { height: 200px; width: 200px; border: 2px solid #a72525; border-radius: 10px; }
result
css code
p { height: 200px; width: 200px; background: #a72525; border-radius: 50%; }
Result
css code
p { height: 200px; width: 100px; border: 2px dashed #a72525; border-radius: 100px 0 0 100px; }
Result
css code
p { height: 200px; width: 200px; border: 2px dotted #a72525; border-radius: 100% 0 0; }
result
css code
p { height: 200px; width: 100px; background: #f09; border-radius: 50%; }
result
css code
p { height: 200px; width: 200px; background: #f90; border-radius: 100% 0; }
result
css code
p { width: 0; height: 0; border: 100px solid gray; border-radius: 100px; border-right-color: transparent; }
result
The above is the detailed content of Detailed explanation of the border-radius attribute of CSS style. For more information, please follow other related articles on the PHP Chinese website!