样式引导数据表搜索过滤器

时间:2013-10-25 18:39:32

标签: css twitter-bootstrap datatables

我想在数据表中设置搜索过滤器的样式,以便标签和输入字段显示在一行上。

现在看起来像这样:

enter image description here

这是我可以通过控制台看到的搜索过滤器的代码。

<div class="dataTables_filter" id="ads-table_filter">
<label>
"Search: " 
<input type="text" aria-controls="ads-table">
</label>
</div>

我该怎么做?

1 个答案:

答案 0 :(得分:2)

<style>
.dataTables_filter {
    white-space:nowrap;
}

.dataTables_filter label, .dataTables_filter input {
    display: inline-block;
}
</style>

<div class="dataTables_filter" id="ads-table_filter">
    <label>Search :</label>
    <input type="text" aria-controls="ads-table"/>
</div>