<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">①IE6默认将高度小于19px的</span><span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">元素,设置成19px</span>
办法:overflow:hidden;
②IE6默认不支持1px的dotted点线
</pre><p><pre name="code" class="html"><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{width:100px;height: 100px;border:3px dotted red;}
</style>
</head>
<body>
<div></div>
</body>
</html>
③在IE6中父元素设置border时子元素margin无效
办法:overflow:hidden;
<span style="font-family: Arial, Helvetica, sans-serif;"><!DOCTYPE html></span>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{margin: 0px;}
.box{background: red;border:1px solid black;}
.div1{height: 100px;background: blue;margin: 12px;}
</style>
</head>
<body>
<div class="box">
<div class="div1"></div>
</div>
</body>
</html>