IE CSS hack
IE系列的常见的Hack技术总结起来就一句话——针对特定版本的IE写特定的的样式,该样式在指定版本的IE以外无法被正确解析。#ml10 {margin-left:10px;margin-left:10px !important; /* Firefox、IE7+支持 */_margin-left:10px /* IE6支持 */*margin-left:10px /* IE6、IE7支持 */*+margin-left:10px /* IE7支持 */margin-left:10px\9; /* IE6、IE7、IE8支持 */margin-left:10px\0; /* IE8支持 */}另外,还有其他写法,比如:*html #ml10{}*+html #ml10{}
补充:综合编程 , 其他综合 ,