重置列表样式,因此ol [type =“1”],ol [type =“A”]有效

时间:2016-12-23 01:36:44

标签: css

我有一个样式表,其中包含以下重置:

ol, ul {
   list-style: none;
}

是否有一个特定的css规则会覆盖它,以便以下工作:

<ol type="A"></ol>

应该相应地设计样式:

ol {
   list-style-type: upper-alpha;
}

1 个答案:

答案 0 :(得分:0)

只需提供

.upper-alpha {
   list-style-type: upper-alpha;
}
<ol type="A" class="upper-alpha"></ol>

或者,使用未设置方法

ol[type="A"] {
   list-style-type: upper-alpha;
}

<强>段

&#13;
&#13;
ol, ul {
  list-style: none;
}
ol[type="A"],
.upper-alpha {
  list-style-type: upper-alpha;
}
&#13;
<ol type="A">
  <li>Hello</li>
</ol>
&#13;
&#13;
&#13;