bootstrap 表格设置列固定宽度以及内容自动换行的CSS

<style type="text/css">
	#contentTable{
		table-layout:fixed; /* bootstrap-table设置colmuns中某列的宽度无效时,需要给整个表设置css属性 */
		word-break:break-all; word-wrap:break-all; /* 自动换行 */
	}
</style>

<table id="contentTable" class="table table-striped table-bordered table-condensed ">
	<thead>
		<tr>
			<th style="width:314px;">消息标题</th>
			<th style="width:80px;">策略名称</th>
			<th style="width:160px;">重发消息标题</th>
			<th style="width:80px;">消息通道</th>
			<th style="width:160px;">消息接收人</th>
		</tr>
	</thead>
	<tbody>
	</tbody>
</table>	

猜你喜欢

转载自blog.csdn.net/xiuwu0423/article/details/84791993