在 HTML 中水平和垂直居中内容?
我有一个包含网页所有内容的表格,我想将该表格在浏览器窗口内水平和垂直居中。它的内容区域比普通浏览器的内容区域小得多,因此应该没有问题。
非常感谢任何帮助。
I have a table which surrounds all the content of a webpage, I would like to center this table horizontally and vertically inside the browser window. It is a much smaller content area than that of the average browser so there should be no issues.
Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将此代码添加到 html 文件顶部的 HEAD 标记内:
add this code to the top of the html file within the HEAD tags:
如果你想让表格居中,你可以使用
margin-left:auto;
如果您想将文本在表格内居中,可以使用
text-align:center;
if you want to center your table.you can use
margin-left:auto;
if you want to center your text inside table you can use
text-align:center;