CSS 提供了 border-radius
属性,可以用来创建圆角矩形。
解法1:
.rounded-rectangle {
width: 200px;
height: 100px;
background-color: #f2f2f2;
border-radius: 15px;
}
解法2:
如果你想要创建一个圆角矩形,其四个角中的两个角为0,其余为15px,你可以使用以下代码:
.rounded-rectangle {
width: 200px;
height: 100px;
background-color: #f2f2f2;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
}
解法3:
如果你想要创建一个圆形的矩形,你可以设置 border-radius
的值为矩形的宽度和高度的一半,这样四个角都会是圆的。
.rounded-rectangle {
width: 200px;
height: 100px;
background-color: #f2f2f2;
border-radius: 50px;
}
以上代码中,.rounded-rectangle
是一个类选择器,你可以将它添加到你的 HTML 元素上,使其成为一个圆角矩形。
注意:border-radius
的值越大,矩形的角就越圆。