css 写一个正梯形盒子,底部带两个反圆角
时间: 2024-02-18 15:11:51 浏览: 123
可以使用 CSS 的 `transform` 属性来实现正梯形,然后使用 `border-radius` 属性来设置两个反圆角。
HTML 代码:
```html
<div class="trapezoid"></div>
```
CSS 代码:
```css
.trapezoid {
width: 200px;
height: 0;
border-bottom: 100px solid #333; /* 底边 */
border-left: 50px solid transparent; /* 左侧斜边 */
border-right: 50px solid transparent; /* 右侧斜边 */
transform: skew(-20deg); /* 将元素倾斜 20 度 */
border-bottom-left-radius: 20px; /* 左下反圆角 */
border-bottom-right-radius: 20px; /* 右下反圆角 */
}
```
解释一下上述代码:
1. 设置元素的宽度为 200px,高度为 0,通过设置 `border-bottom` 属性实现元素的底边;
2. 通过设置 `border-left` 和 `border-right` 属性实现元素的左右斜边;
3. 使用 `transform` 属性将元素倾斜 20 度,实现正梯形效果;
4. 使用 `border-bottom-left-radius` 和 `border-bottom-right-radius` 属性设置左下和右下反圆角。
阅读全文