- 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层叠顺序的比较止步于父级层叠上下文
css小技巧
最新推荐文章于 2023-07-15 10:18:50 发布