我正在用HTML创建一个表格:
表格是:
<table class="table" style="font-size:22px; width:100%">
我希望所有内容都适合页面的宽度。如果它不合适,那么我希望用省略号截断团队名称。这可能与HTML有关吗?
以下是我迄今为止所做的尝试:
<style>
table td {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
}
</style>
答案 0 :(得分:3)
这是可能的。您只需向max-width
添加td
媒体资源即可。像这样:
table td {
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
white-space: nowrap;
max-width:100px;
}