如何使用 BlueprintCSS 将 div 居中?

发布于 2024-10-17 04:52:10 字数 221 浏览 3 评论 0原文

所以我在容器类中有 div 。如何使 div 居中,以便根据 div 的宽度正确地向两侧均匀添加空白空间?

<body>
  <div class="container">
    ... other stuff ...
    <div>center me</div>
  </div>
</body>

So I have div within the container class. How do I center the div, so that it properly adds empty space equally to both sides, depending on the width of the div?

<body>
  <div class="container">
    ... other stuff ...
    <div>center me</div>
  </div>
</body>

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

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

发布评论

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

评论(4

醉殇 2024-10-24 04:52:10

你可以这样做:

<div class="span-6 last prepend-9 append-9">contents</div>

You can do it like this:

<div class="span-6 last prepend-9 append-9">contents</div>
青衫负雪 2024-10-24 04:52:10

通常,您知道跨度单位中的页面宽度,因为您在构建 blueprint-css 文件时定义了它们...所以您可以执行类似的操作...“span-x”是段或页面的宽度跨度单位...“左”向左浮动,“右”向右浮动...两者取消并使 div 居中。

<body>
  <div class="container">
    ... other stuff ...
    <div class="span-x right left last">center me</div>
  </div>
</body>

Normally you know the width of the page in span units because you define them when you build your blueprint-css file... so you could do something like this... "span-x" is the width of the segment or page in span units... "left" floats left, and "right" floats right... the two cancel and center the div.

<body>
  <div class="container">
    ... other stuff ...
    <div class="span-x right left last">center me</div>
  </div>
</body>
盗琴音 2024-10-24 04:52:10

蓝图具有“居中”样式,您可以使用:

<div class="span-10 centered">...</div>

Blueprint has a "centered" style you can use:

<div class="span-10 centered">...</div>
小傻瓜 2024-10-24 04:52:10

老问题,我知道,但你可以将 divmargin-leftmargin-right 设置为 auto 。我相信这样就可以了。

Old question, I know but you could set the margin-left and margin-right of that div to auto. I believe that would do it.

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