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;
}