微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

有趣且重要的css知识合集3好看的css

1、background:linear-gradient(90deg,rgba(237,219,211,1) 0%,rgba(202,152,124,1) 100%)

2、多边形①clip-path:polygon(50% 0,50% 0,100% 100%)

三角形 ②width:0;height:0;border-width:0 40px 40px;border-color:transparent transparent color
3、shape-outside 环绕

好看的Box-shadow:
Box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);

4、浏览器滚动条修改
.chapter-list::-webkit-scrollbar,.map-main::-webkit-scrollbar {
 width: 3px;
}
 .chapter-list::-webkit-scrollbar-track,.map-main::-webkit-scrollbar-track {
 background-color:#ffeda3 ;
 -webkit-border-radius: 2em;
 -moz-border-radius: 2em;
 border-radius:2em;
}
 .chapter-list::-webkit-scrollbar-thumb,.map-main::-webkit-scrollbar-thumb {
 background-color:#fa7a09;
 -webkit-border-radius: 2em;
 -moz-border-radius: 2em;
 border-radius:2em;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。