Appearance
reset.css
https://github.com/JowayYoung/idea-css/blob/master/css/reset.css#L123 / https://raw.githubusercontent.com/JowayYoung/idea-css/refs/heads/master/css/reset.css
浏览器私有属性
css
chrome safari newOpera newEdge
-webkit-transform: translate(10px, 10px);
firefox
-moz-transform: translate(10px, 10px);
IE oldEdge
-ms-transform: translate(10px, 10px);
oldOpera
-o-transform: translate(10px, 10px);
standard
transform: translate(10px, 10px);
oldIE 版本控制
html
<head>
<!--[if IE]>
<style>
.elem {
background-color: #f66;
}
</style>
<![endif]-->
</head>
.elem {
background-color: #f66; /* IExplorer 8+ */
*background-color: #f66; /* IExplorer 7 */
_background-color: #f66; /* IExplorer 6 */
}