DataTables+BootStrap创建复杂表头,head的内容总是不能垂直居中。

网站使用了DataTables,他本身提供了一个dataTables.bootstrap.css这么一个样式表,我创建一个复杂表头的时候应用了这个样式表,可是head的内容总是不能垂直居中,请问怎么解决?

没有人用过吗?求大神们指导一下

/* dataTables列内容居中 */
.table>tbody>tr>td{
text-align:center;
}

/* dataTables表头居中 */
.table>thead:first-child>tr:first-child>th{
text-align:center;
}

请教下您,如何动态创建复杂的表头?