8 兼容性
8.1 属性前缀
【强制】 带私有前缀的属性由长到短排列,按冒号位置对齐;
标准属性放在最后,按冒号对齐方便阅读与编辑。
示例:
/* Not so great */.selector {transition: color .2s ease-in 0;-webkit-transition: color .2s ease-in 0;-moz-transition: color .2s ease-in 0;}/* Better */.selector {-webkit-transition: color .2s ease-in 0;-moz-transition: color .2s ease-in 0;transition: color .2s ease-in 0;}
8.2 hack
【建议】 如果有其他解决方案,请不要使用hack;
[⬆]
