简单的 HTML 应在页面中心显示 div

发布于 2024-12-11 07:16:33 字数 1332 浏览 0 评论 0原文

为什么这个极其简单的网页不在页面中央显示 id 为“mainContent”的 div。

现在 div 位于左侧。但我希望 div 位于网页(body 元素)的中心。

出了什么问题吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title> </title>

    <style type="text/css">
    <!--
        body {
            text-align: center;
            background-color: red;
        }

        #mainContent {
            width: 800px;
            background-color: blue;
        }

        #content {
            width: 600px;
            float: left;
            background-color: green;

            overflow: hidden;
        }

        #sidebar {
            width: 200px;
            float: left;
            background-color: yellow;

            overflow: hidden;
        }
    -->
    </style>
</head>
<body>

    <div id="mainContent">
        <!-- Left Column/Bar -->
        <div id="content">
            <p>content</p>
        </div>

        <!-- Right Column/Bar -->
        <div id="sidebar">
            <p>sidebar</p>
        </div>
    </div>

</body>
</html>

Why doesn't this EXTREMELY simple webpage show the div with the id "mainContent" in the centre of the page.

Right now the div is on the left. But I would like the div to be centred in the webpage(body element).

Whats going wrong?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title> </title>

    <style type="text/css">
    <!--
        body {
            text-align: center;
            background-color: red;
        }

        #mainContent {
            width: 800px;
            background-color: blue;
        }

        #content {
            width: 600px;
            float: left;
            background-color: green;

            overflow: hidden;
        }

        #sidebar {
            width: 200px;
            float: left;
            background-color: yellow;

            overflow: hidden;
        }
    -->
    </style>
</head>
<body>

    <div id="mainContent">
        <!-- Left Column/Bar -->
        <div id="content">
            <p>content</p>
        </div>

        <!-- Right Column/Bar -->
        <div id="sidebar">
            <p>sidebar</p>
        </div>
    </div>

</body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

玩心态 2024-12-18 07:16:33

您只需要添加 margin: 0 auto; 即可使其顶部和底部的边距为 0,以及左侧和右侧的自动边距。

    #mainContent {
        width: 800px;
        margin: 0 auto;
        background-color: blue;
    }

You just need to add margin: 0 auto; which gives it 0 margin on top and bottom, and automatic margins left and right.

    #mainContent {
        width: 800px;
        margin: 0 auto;
        background-color: blue;
    }
友欢 2024-12-18 07:16:33
#mainContent {
            width: 800px;
            margin: 0 auto;
            background-color: blue;
        }

尝试一下。 text-align:center 居中文本,不一定是页面上的所有元素。

#mainContent {
            width: 800px;
            margin: 0 auto;
            background-color: blue;
        }

try that. text-align:center centers text, not necessarily all elements on the page.

半葬歌 2024-12-18 07:16:33

你还必须改变这一点

body {
        text-align: center;
        background-color: red;
    }

body {
        background-color: red;
    }

You have also to change that:

body {
        text-align: center;
        background-color: red;
    }

to that

body {
        background-color: red;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文