特定のdivにのみ適用する必要がある次のCSSがあります(競合のため):
問題の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>
、コード内に他のインスタンスがある場合、これらのルールを適用したくありません。