尝试将我的网页居中
可能的重复:
页面不会居中对齐
我正在尝试使用 asp.net 将我的网页居中。当我使用
标签时,它仅将内容占位符居中。但是当我使用 CSS 属性 margin: 0 auto
时,它不会执行任何操作。有没有办法让整个页面居中?Possible Duplicate:
page will not align center
I'm trying to center my web page using asp.net. When I use the <center>
tag it only centers the content placeholder. But when I use the CSS attribute margin: 0 auto
, it doesn't do anything. Is there a way to center the whole page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在你的CSS中:
编辑:我猜我也应该显示相关的标记......
In your CSS:
Edit: guess I should probably show the associated markup as well...
您需要将所有内容放在包装 div 中,并在该元素上设置宽度,以及
margin: 0 auto;
示例:
You need to have all your content with in a wrapping div, and have a set width on that element, along with
margin: 0 auto;
Example:
您可以使用CSS:
You can use CSS: