G Chrome 中的元素对齐与绝对位置

发布于 2024-10-20 18:37:25 字数 1018 浏览 3 评论 0原文

我想要红色方块与绿色方块完全重叠。 在 FF、IE 和 Opera 中一切正常,但在 Chrome 中红色方块向左对齐,而不是居中。 另外,我只能影响 #parent div 及其子元素,因为我制作了一个小书签,并且无法更改其他页面元素。

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
    <title></title>
    <style type="text/css">
        #center { text-align: center; }
        #parent {
            position: absolute;
            display: inline;
        }
        #nested {
            background-color: #c00;
            width: 280px !important;
            height: 210px !important;
        }

    </style>
</head>
<body>
    <div id="center">
        <div id="parent"><div id="nested"></div></div>
        <div style="display: inline-block; width: 280px; height: 210px; background-color: #0c0;"></div>
    </div>
</body>
</html>

请各位指教!

当我详细阐述 chrome 属性时,我发现当您将 #parent 的位置设置为绝对时,chrome 会强制显示阻塞。如何使其内联?

I want red square exactly overlap green one.
Everything works fine in FF, IE and Opera, but in Chrome red square aligning to the left, not center.
Also, I can affect only on #parent div and its children because I making a bookmarklet and I can't change other page elements.

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
    <title></title>
    <style type="text/css">
        #center { text-align: center; }
        #parent {
            position: absolute;
            display: inline;
        }
        #nested {
            background-color: #c00;
            width: 280px !important;
            height: 210px !important;
        }

    </style>
</head>
<body>
    <div id="center">
        <div id="parent"><div id="nested"></div></div>
        <div style="display: inline-block; width: 280px; height: 210px; background-color: #0c0;"></div>
    </div>
</body>
</html>

Please, advice!

When I elaborated on chrome properties, I found that chrome is forcing display to block when you set position to absolute for #parent. How to make it inline?

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

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

发布评论

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

评论(1

坠似风落 2024-10-27 18:37:25

我认为这在视觉上是您所要求的:

  • 我只更改了#parent#nested的CSS。
  • 它在 IE7/IE8、Firefox、Chrome、Opera、Safari 中看起来是一样的。

现场演示

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
    <title></title>
    <style type="text/css">
        #center { text-align: center; }
        #parent {
            position: absolute;
            left: 0;
            right: 0;
            /*top: 0;*/
            text-align: center
        }
        #nested {
            background-color: #c00;
            width: 280px !important;
            height: 210px !important;
            display: inline-block
        }

    </style>
</head>
<body>
    <div id="center">
        <div id="parent"><div id="nested"></div></div>
        <div style="display: inline-block; width: 280px; height: 210px; background-color: #0c0;"></div>
    </div>
</body>
</html>

I think this is visually what you asked for:

  • I only changed the CSS for #parent and #nested.
  • It looks the same in IE7/IE8, Firefox, Chrome, Opera, Safari.

Live Demo

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
    <title></title>
    <style type="text/css">
        #center { text-align: center; }
        #parent {
            position: absolute;
            left: 0;
            right: 0;
            /*top: 0;*/
            text-align: center
        }
        #nested {
            background-color: #c00;
            width: 280px !important;
            height: 210px !important;
            display: inline-block
        }

    </style>
</head>
<body>
    <div id="center">
        <div id="parent"><div id="nested"></div></div>
        <div style="display: inline-block; width: 280px; height: 210px; background-color: #0c0;"></div>
    </div>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文