将容器 ul/div 置于流体布局的中心
我想在流体布局中将容器 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信改变是非常简单的来实现你所需要的:
I believe changes are pretty simple to achieve what you need:
您可以将
display:inline-block
提供给您希望位于中心的DIV
。在其父 DIV 中定义 text-align:center。例如,您可以这样做:CSS:
HTML:
检查下面的示例:
http://jsfiddle.net/aNR3a/
You can give
display:inline-block
to youDIV
which you want in center & define text-align:center in hisparent DIV
. For example you can do like this:CSS:
HTML:
Check the example below:
http://jsfiddle.net/aNR3a/