jQuery数据表头元素未对齐

时间:2015-08-29 14:08:53

标签: datatables

我正在使用数据表,一切正常。但标题元素没有正确对齐。

Datatable header

的参考文献:

<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">    
<link href="css/dataTables.jqueryui.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">

<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript" charset="utf8" src="js/jquery.dataTables.min.js"></script>
<script type="text/javascript" charset="utf8" src="js/dataTables.jqueryui.js"></script>

1 个答案:

答案 0 :(得分:0)

感谢所有试图帮助我的人。我找到了解决方案。 Bootstrap css正在影响数据表css。

Bootstrap覆盖了标头中select元素的宽度。我只是用自定义css来修复宽度。问题解决了。

.dataTables_wrapper select{
    display: inline !important;
    width: 60px !important;
}

现在看起来像这样: enter image description here