我今天晚上,做一個(gè)快印公司的網(wǎng)站布局,在Div鑲套布局中,父標(biāo)簽DIV的高度不變。在IE下沒(méi)有問(wèn)題,但是在FIREFOX下就有問(wèn)題了。
如圖:發(fā)了兩張同樣的怕百度盜鏈,另一張放在我網(wǎng)站上,在教育網(wǎng)內(nèi)
https://hiphotos.baidu.com/one2two/pic/item/a7c3653de3c3f1de9f3d6295.jpg
https://tw.njut.edu.cn/question.gif
代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無(wú)標(biāo)題文檔</title>
</head>
<body>
<div style="width:300px;border:#FF0000 solid 1px;">
<div style="width:200px; float:left; position:relative;border:#000000 solid 1px; clear:left">
<p>此處顯示</p>
<p>新 Div 標(biāo)簽的</p>
<p>內(nèi)容</p>
</div>
<div style="width:80px; float:left; position:relative;border:#0000CC solid 1px; clear:right">此處顯示新 Div 標(biāo)簽的內(nèi)容</div>
</div>
</body>
</html>
在網(wǎng)上搜索一下發(fā)現(xiàn)有同樣問(wèn)題的人還挺多,給的方法也很多,有用JS的,有用HEIGHT=100%的,我感覺(jué)都沒(méi)有作用。
我在下面加了一個(gè)
<div style="clear:both"></div>
加完后代碼是:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無(wú)標(biāo)題文檔</title>
</head>
<body>
<div style="width:300px;border:#FF0000 solid 1px;">
<div style="width:200px; float:left; position:relative;border:#000000 solid 1px; clear:left">
<p>此處顯示</p>
<p>新 Div 標(biāo)簽的</p>
<p>內(nèi)容</p>
</div>
<div style="width:80px; float:left; position:relative;border:#0000CC solid 1px; clear:right">此處顯示新 Div 標(biāo)簽的內(nèi)容</div>
<div style="clear:both"></div>
</div>
</body>
</html>
這樣就可以解決問(wèn)題了。