CSS:如何实现 - 两个元素在没有第三个父容器的情况下并排居中和定位?

发布于 2024-10-22 17:30:54 字数 261 浏览 7 评论 0原文

问题:在以下 HTML 标记中:

<html>
  <body>
    <div id="div_1"></div>
    <div id="div_2"></div>
  </body>
</html>

我希望两个 div(可以是任何其他标签)居中并并排放置。如何使用 CSS 实现这一点,而不添加第三个父容器?

Problem: In the following HTML-markup:

<html>
  <body>
    <div id="div_1"></div>
    <div id="div_2"></div>
  </body>
</html>

I want both div's (this can be any other tag) to be centered AND positioned side-by-side. How to achieve this with CSS, without adding a third parent container?

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

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

发布评论

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

评论(1

空‖城人不在 2024-10-29 17:30:54

此处演示: http://jsfiddle.net/Shehi/6RqWb/

以下 CSS 规则可以解决问题:

#div_1
{
    width: 200px;
    height: 200px;
    background-color: red;
    position: relative;
    left: 50%;
    margin-left: -200px; /* = -1 * the width of element */
    float: left;
    clear: none;
}

#div_2
{
    width: 200px;
    height: 200px;
    background-color: blue;
    position: relative;
    right: 50%;
    margin-right: -200px; /* = -1 * the width of element */
    float: right;
    clear: none;
}

Demo here: http://jsfiddle.net/Shehi/6RqWb/

Following CSS rules solve the problem:

#div_1
{
    width: 200px;
    height: 200px;
    background-color: red;
    position: relative;
    left: 50%;
    margin-left: -200px; /* = -1 * the width of element */
    float: left;
    clear: none;
}

#div_2
{
    width: 200px;
    height: 200px;
    background-color: blue;
    position: relative;
    right: 50%;
    margin-right: -200px; /* = -1 * the width of element */
    float: right;
    clear: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文