在IE和Firefox中渲染相同的html会给我一个不同的结果,因为在IE中,从布局角度来看,隐藏的复选框不会被忽略。此图像显示隐藏的复选框位于IE中的空间,但隐藏的复选框在Firefox中没有空格:
<html><head>
<style type="text/css">
<!--
#checkboxhide { position: relative; visibility: hidden; font-size: 8.5pt; font-weight: font-family: verdana;}
//-->
</style>
</head><body>
<table><tr>
<td>|</td>
<td><span id="checkboxhide"><input type="checkbox" hidden="" name="blah"></span>|Greetings Earthings</td>
</tr></table>
</body></html>
如何让两个(或更多)浏览器显示相同的内容?
答案 0 :(得分:4)
CSS visibility
属性设置为hidden
时,可以隐藏元素的内容,但不能隐藏它占用的空间。
display
属性设置为none
时,会隐藏元素的内容及其占用的空间。
使用display: none
而不是visibility: hidden
:
#checkboxhide { position: relative; display: none; font-size: 8.5pt; font-weight: font-family: verdana;}