📅  最后修改于: 2023-12-03 14:40:19.550000             🧑  作者: Mango
CSS边界半径属性指定元素的边框角落的半径大小。
border-radius: length [% length] [length] [% / length [% length]][/ length [% length]];
其中:
border-radius: 30px;
border-radius: 10% / 20px;
border-radius: 50% 50% 0 0;
border-radius: 0 0 50% 50%;
border-radius: 50% / 20%;
.btn {
width: 100px;
height: 100px;
background-color: #007bff;
color: #fff;
border-radius: 50%;
text-align: center;
line-height: 100px;
font-size: 20px;
}
.box {
width: 200px;
height: 100px;
background-color: #007bff;
color: #fff;
border-radius: 10px;
text-align: center;
line-height: 100px;
font-size: 20px;
}
.tag {
width: 140px;
height: 60px;
background-color: #007bff;
color: #fff;
border-radius: 60% / 40% 40% 60% 60%;
text-align: center;
line-height: 60px;
font-size: 20px;
}
CSS边界半径属性可以创建许多不同形状的元素。给元素添加合适的边界半径,可以增加网页设计的美感和可读性。