我为列表定义了一个全局变量,并且在我的html中引用了
ol>li::before, ul>li::before {
color: #FFFFFF;
content: '\00A7';
display: inline-block;
position: absolute;
}
我试图在html中覆盖它,因为我必须删除以下行:
content: '\00A7';
如果仅在本地文件中使用它,则不会覆盖。 关于如何解决此问题的任何建议?
答案 0 :(得分:1)
您可以通过三种方式实现它。
!important
ol>li::before, ul>li::before {
content: '\00A7' !important;
}
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="my.css">
<ol my-tag>
...
</ol>
ol[my-tag]>li::before{
// your own css
}