list-style-type
プロパティの特定の値を持つ順序付きリストがあり、その子に影響しないようにしたい。子のみではなく、親にリストスタイルスタイルを適用する
現在、順序付きリストにはネストされた別の順序付きリストがあり、list-style-type
値を継承します。どうすればそれを無効にできますか?
<ol class='custom-ol'>
<li> cat1:
<ol style="list-style-type:lower-alpha">
<li>text 1</li>
<li>text2</li>
</ol>
</li>
<li>
cat2:
<ol style="list-style-type:lower-alpha">
<li>text 3</li>
<li>text 4</li>
</ol>
</li>
私が得るものだという(更新版)
を私はそのように修正しようとしたが、それがすべてで働いていない
<style>
.custom-ol ol
{
counter-reset: custom-counter;
list-style-type: none;
}
.custom-ol ol li
{
counter-increment: custom-counter;
}
.custom-ol ol li:before
{
content:"(" counter(custom-counter) ") ";
font-weight:bold;
}
</style>
CSSスタイル
ol.custom-ol
{
counter-reset: custom-counter;
list-style-type: none;
}
ol.custom-ol li
{
counter-increment: custom-counter;
}
ol.custom-ol li:before
{
content:"(" counter(custom-counter) ") ";
font-weight:bold;
}
ol ol {
list-style-type: lower-alpha;
}
私は親が欲しいです(現在1はで(1)になります)。カスタムオールクラス と彼の子供たち、彼らは、bはとしても、(1)、(2)
cssのセレクタ? –
@AdirZoariはい、その1 – Larpee
@AdirZoari動作するかどうか教えてください – Larpee