如何根据溢出元素的宽度使内容居中?
我有一个溢出的表格,我无法将标题按照溢出表格的宽度居中。
以下是打印预览时的查看方式:
请注意,标题未居中。正常预览时,页面如下所示:
我注意到中心对齐方式只是遵循屏幕上的显示方式。如何使该页面的标题居中?
顺便说一句,这是我的 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:
Notice that the headers are not centered. When previewed normally, the page looks like this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)