我有以下 CSS 我只需要应用于特定的 div (因为冲突):
有问题的 div 具有类名 datepicker-days。我是否将以下声明table
为.datepicker-days.table
?但是那我该如何声明.table
下面的类呢?
CSS
table {
max-width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.table {
width: 100%;
margin-bottom: 18px;
}
.table th, .table td {
padding: 8px;
line-height: 18px;
text-align: left;
border-top: 1px solid #ddd;
}
HTML
<div class="datepicker-days" style="display: block; ">
<table class=" table-condensed">
<thead>
<tr>
<th class="prev">
....
抱歉,如果不清楚,CSS 规则来自 Bootstrap。我只是使用了一些规则,因为我使用的 datepicker 插件取决于那些特定的规则。因此,在我的代码中有其他实例的地方<tables>
,我不希望应用这些规则。