nth-of-type(n)

选择器选择的是该元素的第n个孩子
.page:nth-of-type(1){z-index: 10;}
.page:nth-of-type(2){z-index: 9;}
.page:nth-of-type(3){z-index: 8;}
 
animation-fill-mode: forwards;  // 当动画完成后,保持最后一个属性值
-webkit-transform-origin: left bottom;    // 属性允许您改变被转换元素的位置。
-webkit-animation: cloud 3s 2s infinite alternate linear;  /*总共时间3s 延时2s infinite 重复 alternate来回滑动 liner 匀速*/
.tags input:checked+span {  /*选中状态下input后的span*/
this.files[0].type.split("/")[0]==“image”  将字符串分割成数组 
[originalString  componentsSeparatedByString:@" "];
原文地址:https://www.cnblogs.com/tian-sun/p/7404204.html