仅使用 CSS 居中内容?
可能的重复:
如何轻松地将
我已经阅读了多种使用CSS 在页面上居中内容的方法。我不是在谈论文本,而是在谈论图像或容器等内容。
居中内容的最佳方式是什么?
设置框的宽度,然后使用类似 left: 50% 的值?
我读过很多方法,试图理解哪种方法真正效果最好,并且跨浏览器友好并且可以在旧版浏览器中工作,这确实令人困惑。
关于什么是真正最好和最有效的方法有什么想法吗?
谢谢!
Possible Duplicate:
How do you easily horizontally center a <div> using CSS?
I have read multiple ways for centering content on a page using CSS. I am not talking about text, I am talking about content like images or a container etc.
What is the best way for centering content?
Setting the width of the box then using something like left: 50%?
I have read many many ways and really it gets confusing trying to understand which method truly works the best and is cross-browser friendly and works in older browsers.
Any ideas on what is truly the best and most effective way?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 div 居中:
Css:
这会将宽度为 600px 的 div 在页面上水平居中。
边距:0 自动;将左右边距设置为页面左侧和右侧剩余的任何像素。
例如,如果页面宽度为 800px,则左边距为 100px,右边距为 100px,将 600px 移动到页面中心
Centering a div:
The Css:
this will horizontally center the div of width 600px on the page.
the margin: 0 auto; sets the left and right margin to whatever pixel left on the left and right of the page.
forexample if the width of the page is 800px, the margin left will be 100px and the right also 100px, moving the 600px at the center of the page