bootstrap表格限制內容長度,多餘內容用省略號替代
阿新 • • 發佈:2018-11-26
table效果:
原始碼:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 引入 Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 Shiv 和 Respond.js 用於讓 IE8 支援 HTML5元素和媒體查詢 -->
<!-- 注意: 如果通過 file:// 引入 Respond.js 檔案,則該檔案無法起效果 -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<style>
.table>tfoot>tr>td {
border-bottom: 1px solid #ddd;
}
th {
text-align: left;
padding-left: 15px !important;
background-color: #019297;
color: #fff !important;
border-bottom: none !important ;
line-height: 29px !important;
}
</style>
</head>
<body>
<div style="width: 200px;height: 300px;">
<table style=" table-layout:fixed" class="table table-bordered">
<th width="10%">Title01</th>
<th width="20%">Title02</th>
<!-- 其他th -->
<c:foreach items="" var="" varStatus=""></c:foreach>
<tr>
<td style="overflow:hidden; white-space:nowrap">這是title01的內容</td>
<td style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;">這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容</td>
<!-- other td -->
</tr>
<tr>
<td style="overflow:hidden; white-space:nowrap">這是title01的內容</td>
<td style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;">這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容這是title02的內容</td>
<!-- other td -->
</tr>
</c:foreach>
</table>
</div>
</body>
<!-- jQuery (Bootstrap 的 JavaScript 外掛需要引入 jQuery) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- 包括所有已編譯的外掛 -->
<script src="js/bootstrap.min.js"></script>
</html>