一个简单的 html 页面。如果你在IE中运行它(我的版本是7)。
你会发现输入有一个“margin-left”(大小为 15px)。
但是如果你删除(*zoom:1),我们应该用它来触发haslayout,即“margin-left”消失。
所以这就是为什么???
<!DOCTYPE>
<html>
<head>
<style>
body,div,input{margin:0;padding:0;}
.div-inline{display:inline-block;*display:inline;*zoom:1;border:1px solid red;}
.marginLeft-15{margin-left:15px;}
</style>
</head>
<body>
<div class="marginLeft-15">
<div class="div-inline"><input type="text" id="proxy_unuse_address"></div>
</div>
</body>
</html>