我有一个样式表,其中包含以下重置:
ol, ul {
list-style: none;
}
是否有一个特定的css规则会覆盖它,以便以下工作:
<ol type="A"></ol>
应该相应地设计样式:
ol {
list-style-type: upper-alpha;
}
答案 0 :(得分:0)
只需提供类:
.upper-alpha {
list-style-type: upper-alpha;
}
<ol type="A" class="upper-alpha"></ol>
或者,使用未设置方法:
ol[type="A"] {
list-style-type: upper-alpha;
}
<强>段强>
ol, ul {
list-style: none;
}
ol[type="A"],
.upper-alpha {
list-style-type: upper-alpha;
}
&#13;
<ol type="A">
<li>Hello</li>
</ol>
&#13;