文章目录

CSS,bootstrap表格控制当td内容过长时用省略号表示,以及在不使用bootstrap时过长也用省略号表示
首先需要在table中设置table-layout:fixed;

1
<table style="table-layout:fixed"></table>

然后在表头th中设置每列的宽度

1
2
3
4
5
<table style="table-layout:fixed">
<th width="10%">Title01</th>
<th width="20%">Title02</th>
<!-- 其他th -->
</table>

然后在需要当长度大于一定数值时用省略号表示的td上面添加样式

1
2
3
4
5
6
7
8
9
10
<table style="table-layout:fixed">
<th width="10%">Title01</th>
<th width="20%">Title02</th>
<!-- 其他th -->
<c:foreach items = "" var ="" varStatus = "">
<td><title01</td>
<td style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;"><title02</td>
<!-- other td -->
</c:foreach>
</table>

bootstrap在设置表格大小时需要设置到th中,否则可能不会生效,以上在bootstrap中可用

当不使用bootstrap的时候可以使用如下样式,网上搜索到的,比较好用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
.mytable {
table-layout: fixed;
width: 98% border:0px;
margin: 0px;
}
.mytable tr td {
text-overflow: ellipsis; /* for IE */
-moz-text-overflow: ellipsis; /* for Firefox,mozilla */
overflow: hidden;
white-space: nowrap;
border: 1px solid;
text-align: left
}
</style>
</head>
<body>
<table width="500px" class="mytable">
<tr>
<td width="20%">再别康桥</td>
<td width="80%">
轻轻我走了,正如我轻轻地来,我挥一挥衣袖,不带走一片云彩
</td>
</tr>
</table>
</body>
</html>
文章目录