1.如题,使用到了强大的表格插件datatables,要使标题和内容都居中显示,只需要在jsp引入css,写上如下内容即可:
- /*qiulinhe:2016年11月7日13:48:26*/
- /* dataTables列内容居中 */
- .table>tbody>tr>td{
- text-align:center;
- }
- /* dataTables表头居中 */
- .table>thead:first-child>tr:first-child>th{
- text-align:center;
- }
2.假如要设置表格某些列为特殊格式的话,你可以在th里面增加p,然后增加css样式,如下:
- /* dataTables某些标题字体小一号,可以在标题<th><p>测试字体小一号</th>,就可以设置某些列特殊的样式 */
- .table>thead:first-child>tr:first-child>th p{
- text-align:center;
- font-weight:normal;//字体粗细为正常
- }