CSS 使包装 div 内的两个 div 等距

发布于 2024-11-30 05:14:33 字数 239 浏览 3 评论 0原文

请在此处查看我的代码。我想做的事情看起来很简单。我试图使紫色框中的两个框(一黄一绿)等距。因此,我希望从紫色框的左边框到绿色框的左边框的间距等于绿色框的右边框和黄色框的左边框之间的距离,这也与黄色框的右边框到紫色框的右边框。

我完全没有想法,但我想我已经很接近了。

感谢您对此提供的任何帮助!

埃文

Please view my code HERE. What I am trying to do is quite simple, so it seems. I am trying to make the two boxes (one yellow, one green) in the purple box equidistant. So, I want the spacing from the purple box's left border to the green box's left border to be equal distance between the green box's right border and the yellow box's left border, which will also be equidistant to the space between the yellow box's right border to the purple box's right border.

I am all out of ideas, but I think I am close.

Thank you for any help with this!

Evan

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

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

发布评论

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

评论(2

酷炫老祖宗 2024-12-07 05:14:33

您可以在左侧框上使用 float: left ,在右侧框上使用 float: right;http://jsfiddle.net/feeela/D6MUq/38/

You can use float: left on the left box and float: right; on the right box: http://jsfiddle.net/feeela/D6MUq/38/

永言不败 2024-12-07 05:14:33

这看起来不错:

#templatetypes {
    width: 150px;
    background-color:green;
    margin-left:13%;
    float:left;
    }

#supportlinks {
    width: 150px;
    background-color:yellow;
    margin-right:13%;
    float:right;
    }

This looks pretty good:

#templatetypes {
    width: 150px;
    background-color:green;
    margin-left:13%;
    float:left;
    }

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