将容器 ul/div 置于流体布局的中心

发布于 2024-12-18 01:44:30 字数 291 浏览 1 评论 0原文

我想在流体布局中将容器 div 居中(带有 id:articles_grid 的内容必须居中): http://www.benskesblog.com/projects/frontend/project/index.htm

我尝试了很多方法,但没有一个有效。 (例如:边距:0 auto;)。

有人可以告诉我如何解决这个问题吗?

谢谢

I want to center a container div in a fluid lay-out (content with id: articles_grid has to be centered):
http://www.benskesblog.com/projects/frontend/project/index.htm

I've tried a lot a methods, but no one did work. (for example: margin: 0 auto;).

Could someone tell me how to solve this?

Thanks

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

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

发布评论

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

评论(2

百合的盛世恋 2024-12-25 01:44:30

我相信改变是非常简单的来实现你所需要的:

#articles_grid {
...
text-align: center; /*add this*/
}

#articles_grid li {
...
/* float:left; remove this */
display: inline-block; /*add this*/
}

I believe changes are pretty simple to achieve what you need:

#articles_grid {
...
text-align: center; /*add this*/
}

#articles_grid li {
...
/* float:left; remove this */
display: inline-block; /*add this*/
}
人海汹涌 2024-12-25 01:44:30

您可以将 display:inline-block 提供给您希望位于中心的 DIV 。在其父 DIV 中定义 text-align:center。例如,您可以这样做:

CSS:

.parent{
    background:red;
    text-align:center;
}
.center{
    text-align:left;
    display:inline-block;
    *display:inline;/* IE7 */
    *zoom:1;
    background:yellow;
    min-height:100px;
}

HTML:

<div class="parent">
    <div class="center">lorem ipsum</div>
</div>

检查下面的示例:

http://jsfiddle.net/aNR3a/

You can give display:inline-block to you DIV which you want in center & define text-align:center in his parent DIV. For example you can do like this:

CSS:

.parent{
    background:red;
    text-align:center;
}
.center{
    text-align:left;
    display:inline-block;
    *display:inline;/* IE7 */
    *zoom:1;
    background:yellow;
    min-height:100px;
}

HTML:

<div class="parent">
    <div class="center">lorem ipsum</div>
</div>

Check the example below:

http://jsfiddle.net/aNR3a/

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