浏览文章
文章信息
Css 实现条纹 | Css stripe
1093
Css条纹:
.stripe-border-bottom:after { content: ""; position: relative; display: block; height: 4px; width: 100%; background: #cb5a5e; /* background: repeating-linear-gradient(45deg, #EE617D 12px, #fff 12px, #fff 24px, #3D6F8E 24px, #3D6F8E 36px, #fff 36px, #fff 48px, #EE617D 48px, #EE617D 60px, #fff 60px, #fff 72px, #3D6F8E 72px, #3D6F8E 84px, #fff 84px, #fff 96px ); */ background: repeating-linear-gradient(45deg, rgb(55 107 138) 0 1%, transparent 0 4%),repeating-linear-gradient(45deg, rgb(238 97 125) 0 1%, transparent 0 2%); -webkit-backface-visibility: hidden; backface-visibility: hidden; border-bottom: 0; }