gpt4 book ai didi

html - 边距在 IE 和 Mozilla 中显示不同

转载 作者:太空宇宙 更新时间:2023-11-04 00:27:39 24 4
gpt4 key购买 nike

边距在 IE 和 Mozilla 中的处理方式不同吗?因为当我尝试 Mozilla 3.6 正确显示边距时,但 IE 8 将其拉伸(stretch)得太远。
这是我的代码

<div id="searchCriteria">  
<table width="100%" border="1" bordercolor="#64A4F5">
</table>
</div>
<div id="searchResult">
</div>

这是我的CSS

#searchCriteria{  
height:24%;
width:100%;
float: right;
display: block;
font-family:
verdana,arial;
font-size: 12px;
}

#searchResult{
height:70%;
width:100%;
float:right;
display:block;
margin-top:15px;
margin-bottom:5px;
}

searchCriteriasearchResult div 之间的边距在 IE 中被拉伸(stretch),但在 Mozilla 中工作正常。
(在 IE 中,table 元素和 searchCriteria div 之间似乎有一些空间)

最佳答案

我在 FF 3.6.13、IE7-8 中测试了您的代码。我仅在 IE 的怪癖模式下观察到该问题,这可能意味着您没有使用 Doctype 声明或在怪癖模式下使用 IE。如果您使用的是 XHTML,请使用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type"
content="text/html;charset=utf-8" />
</head>

<body>

<p>… Your HTML content here …</p>

</body>
</html>

如果您使用的是 HTML5,请使用:

<!DOCTYPE html>

参见 this获取要使用的其他 Doctype 声明的列表。

关于html - 边距在 IE 和 Mozilla 中显示不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5893864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com