2
我有一個浮動標題div設置爲1000px在另一個div(寬度1000px)內,後面跟着一個寬度較小的div。問題是這個div內的這個表格在標題的左邊。 如果我在表格上添加一些字符,就沒關係。這是一個錯誤? 這在IE和谷歌瀏覽器中運行良好。Firefox浮動div導致表浮出其容器
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<style>
#container
{
margin: 0px auto;
width: 1000px;
}
#header
{
margin-top: 15px;
width: 1000px;
float: left;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
aaa
</div>
<div style="width: 900px;">
<table>
<tr>
<td>
the wow
</td>
</tr>
</table>
</div>
</div>
</body>
</html>