fieldset标签在IE10与旧版本中的呈现方式不同

时间:2013-11-11 10:21:23

标签: html internet-explorer-10 fieldset

以下Html代码段在IE10与旧版本上看起来不同:

<html>
<body>
<form>
<fieldset style="position:absolute; left: 0px; top: 0px; width: 200px; height: 30px;">
<label>text1</label>
</fieldset>
<label style="position:absolute;width:65px;line-height:15px;height:15px;left:0px;top:40;">text2</label>
</form>
</body>
</html>

IE10:

IE10

IE8:

IE8

预留字体更改,如何更改页面以使布局与IE8中的两种浏览器相同?

1 个答案:

答案 0 :(得分:0)

添加padding: 0px似乎可以解决问题,现在所有版本的IE上的页面呈现方式相同。

现在,fieldset标记如下所示:

<fieldset style="position:absolute; left: 0px; top: 0px; width: 200px; height: 30px; padding: 0px">