不好的方式
.test{ _postion: relative; _top: 10px; }
建议
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="styles/ie-styles.css" /> <![endif]-->
然后把样式写到ie-styles.css文件中:
.test { postion: relative; top: 10px; }
不好的方式
.test{ _postion: relative; _top: 10px; }
建议
<!--[if lte IE 6]> <link rel="stylesheet" type="text/css" href="styles/ie-styles.css" /> <![endif]-->
然后把样式写到ie-styles.css文件中:
.test { postion: relative; top: 10px; }
转载于:https://www.cnblogs.com/czj33499173/archive/2012/01/12/2320410.html