css小技巧

xiaoxiao2021-02-27  534

border颜色不写默认与color一致css实现三角形             .triangle3{                 width:0;height:0;                 border:100px solid;                 border-color:red transparent transparent orange;             }css实现梯形     .triangle4{                 width:600px;                 border:100px solid;                 border-color:transparent  transparent #c00;             }css3中drop-shadow可以给png图标赋色   .icon{ filter: drop-shadow(20px 0 #ff8040;}border不支持百分百宽度定位元素默认z-index:auto可以看成是z-index:0;z-index不为auto的定位元素会创建层叠上下文z-index层叠顺序的比较止步于父级层叠上下文
转载请注明原文地址: https://www.6miu.com/read-1350.html

最新回复(0)