数据表:位置搜索框位于右上角

时间:2012-10-23 20:50:37

标签: jquery css jquery-ui jquery-plugins datatables

如何将搜索框置于右侧?默认情况下,它现在位于左侧

1 个答案:

答案 0 :(得分:14)

Here is an example with the search box aligned to the right

看起来他们使用这种CSS样式:

.dataTables_filter {
   width: 50%;
   float: right;
   text-align: right;
}

据我所知,这是默认值,这意味着你可能正在做一些超越这个的事情。您是否可以发布一个示例,其中字段未正确对齐,以便我们可以查看它?