其他分享
首页 > 其他分享> > 有趣且重要的css知识合集(3)好看的css

有趣且重要的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;
}

标签:color,合集,scrollbar,radius,css,2em,webkit,border,好看
来源: https://blog.csdn.net/qq_39404437/article/details/122823984