如何根据溢出元素的宽度使内容居中?

发布于 2025-01-06 19:54:25 字数 1032 浏览 0 评论 0原文

我有一个溢出的表格,我无法将标题按照溢出表格的宽度居中。

以下是打印预览时的查看方式:

http://www.mediafire.com/imgbnc.php/37044451cd71d383f8f39dccd88da170690fbc2f22cca0b7afaa3c33279cdcee6g.jpg

请注意,标题未居中。正常预览时,页面如下所示:

http://www.mediafire.com/imgbnc.php/787d1776f8e89519630261d0063738ca48fc8404e18c46f380bbea785bfbf9b06g.jpg

我注意到中心对齐方式只是遵循屏幕上的显示方式。如何使该页面的标题居中?

顺便说一句,这是我的 css:

文本 UNIVERSITY OF THE EAST 等

.header {
    width: 100%;
    margin: 0 auto;
    height: auto;
} 

成绩表:

table.grades {
    border-collapse:collapse;
    border: #000 solid 1px;
    font:Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 0 auto;
    overflow-x: visible;
    display: inline;
}

I have an oveflowing table and I cannot center the heading following the width of the overflowing table.

Here's how it is viewed when print previewed:

http://www.mediafire.com/imgbnc.php/37044451cd71d383f8f39dccd88da170690fbc2f22cca0b7afaa3c33279cdcee6g.jpg

Notice that the headers are not centered. When previewed normally, the page looks like this:

http://www.mediafire.com/imgbnc.php/787d1776f8e89519630261d0063738ca48fc8404e18c46f380bbea785bfbf9b06g.jpg

I noticed that the center alignment just followed how it is seen on screen. How can I center the heading in this page?

By the way, here's my css:

the text UNIVERSITY OF THE EAST etc.

.header {
    width: 100%;
    margin: 0 auto;
    height: auto;
} 

the grades table:

table.grades {
    border-collapse:collapse;
    border: #000 solid 1px;
    font:Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 0 auto;
    overflow-x: visible;
    display: inline;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

格子衫的從容 2025-01-13 19:54:25
body{
    display: table; 
}
.table-grades{
    display: table-cell;
}
body{
    display: table; 
}
.table-grades{
    display: table-cell;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文