2

我在另一个 div(宽度 1000px)内将一个浮动标题 div 设置为 1000px,然后是一个宽度较小的 div。问题是这个 div 中的这个表在标题的左边。如果我在表格上方添加一些字符,就可以了。这是一个错误吗?这在 IE 和 Google Chrome 中运行良好。

<!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>
4

1 回答 1

0

问题不清楚。如果您想要在标题下方显示表格,只需取出

向左飘浮;

请明确你想要什么。

于 2012-09-19T13:34:49.450 回答