在 HTML 中水平和垂直居中内容?

发布于 2024-11-10 18:30:08 字数 92 浏览 4 评论 0原文

我有一个包含网页所有内容的表格,我想将该表格在浏览器窗口内水平和垂直居中。它的内容区域比普通浏览器的内容区域小得多,因此应该没有问题。

非常感谢任何帮助。

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 技术交流群。

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

发布评论

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

评论(2

帥小哥 2024-11-17 18:30:08

将此代码添加到 html 文件顶部的 HEAD 标记内:

<style>
table
{
    align: center;
    vertical-align:middle;
}
</style>

add this code to the top of the html file within the HEAD tags:

<style>
table
{
    align: center;
    vertical-align:middle;
}
</style>
风向决定发型 2024-11-17 18:30:08

如果你想让表格居中,你可以使用 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;

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