首页 前端知识 css不规则圆角矩形

css不规则圆角矩形

2024-03-21 15:03:42 前端知识 前端哥 60 472 我要收藏

在这里插入图片描述

<div class="skew"></div>
复制
.skew {
position: relative;
width: 120px;
&::after {
content: "";
position: absolute;
top: 0;
left: 40px;
right: 0;
bottom: 0;
border-radius: 20px;
background: orange;
transform: skewX(164deg);
width: 100px;
height: 100px;
}
&::before {
content: "";
position: absolute;
top: 0;
left: 13px;
width: 100px;
height: 100px;
border-radius: 20px;
background: orange;
}
}
复制

这个收集的css 效果是真的多 https://github.com/chokcoco/iCSS强烈推荐

转载请注明出处或者链接地址:https://www.qianduange.cn//article/4019.html
标签
评论
还可以输入200
共0条数据,当前/页
发布的文章

jQuery和CSS选择器的使用

2024-04-15 09:04:55

HTML前端表单校验的方法

2024-04-15 09:04:46

使用jQuery写一个注册界面

2024-04-15 09:04:46

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!