设置div左上右上圆角
时间: 2023-11-24 11:12:51 浏览: 102
让div圆角显示
要设置 div 左上和右上的圆角,可以使用 CSS 中的 border-radius 属性。具体步骤如下:
1. 使用 border-radius 属性设置左上和右上的圆角,其值为圆角的半径。
2. 如果只需要设置部分角的圆角,可以使用 border-top-left-radius 和 border-top-right-radius 属性分别设置左上和右上的圆角。
以下是一个示例代码:
```html
<div class="rounded">
<p>Some text here.</p>
</div>
```
```css
.rounded {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
/* 或者使用下面这行代码 */
/* border-radius: 10px 10px 0 0; */
}
```
上述代码设置了 div 左上和右上的圆角半径为 10px。如果想要设置所有角的圆角,可以使用 border-radius 属性,其值为四个圆角的半径,按顺序分别为左上、右上、右下、左下。例如:
```css
.rounded {
border-radius: 10px 20px 30px 40px;
}
```
这样就可以设置左上、右上、右下、左下四个角的圆角半径分别为 10px、20px、30px、40px 了。
阅读全文