https://juejin.im/post/6844904033870675981
background-origin
background-clip
background-size
border-radius
border-image
box-shadow,
text-shadow
属性选择器:
[attr]:选择包含attr属性的标签
[attr=value]:选择attr属性值为value的标签
[attr^=value]:选择attr属性值以value开头的标签
[attr*=value]:选择attr属性值包含value的标签
[attr$=value]:选择attr属性值以value的标签
结构伪类选择器:
E:first-child
E:last-child
E:nth-child(n)
E:nth-last-child(n)
E:first-of-type
E:last-of-type
E:nth-of-type(n)
E:nth-last-of-type(n)
见 background 文档
transform:translate
transform:scale transform:rotate transform:skew
如translateZ(),而rotate也分为rotateX(), rotateY(), rotateZ(),分别表示绕着X轴,Y轴,Z轴旋转。2D变换的rotate()其实就相当于rotateZ()。
transition
animation
新增各种CSS选择器 (:not(.input):所有class不是“input”的节点)
多列布局 (multi-column layout)
阴影和反射 (Shadow\Reflect)
文字渲染 (Text-decoration)