我正在使用来自 eonasdan 的日期选择器(https://github.com/Eonasdan/bootstrap-datetimepicker)
它工作得很好,但是当我把它放在一张桌子里时,它继承了桌子的风格。就好像日期选择器也变成了一张桌子。
我怎样才能避免这种情况?
我的 CSS 中有以下内容:
table.table {
tr {
th {
color: #ff0000; //red
}
}
}
这是我的 html 文件:
<table class="table">
<tr>
<th>Reconcile Date</th>
</tr>
<tr>
<td>
<div class="pickdate">
<input type="text" placeholder="Reconcile Date" class="form-control ">
</div>
</td>
</tr>
</table>
这会将我的表头中的文本设置为红色。它还将我的日期选择器中的星期几和月份名称设置为红色。注意pickdate类加载datepicker