我正在尝试覆盖wordpress网站的样式表,并删除特定锚点的下划线。
e.g。
<a href="https://www.mypagehere/" data-emacategory="In-Page Navigation">My Page Title Here</a>
这是CSS
a, a:active, a:hover, a:visited {
color: #000;
text-decoration: none;
}
a:-webkit-any-link {
color: -webkit-link;
cursor: auto;
text-decoration: underline;
}
我尝试添加内联样式&#34; text-decoration:none&#34;到锚标签,但它似乎不起作用。
<a href="https://www.mypagehere/" data-emacategory="In-Page Navigation" style="text-decoration: none">My Page Title Here</a>
我在做错了什么?我认为内联样式优先于样式表和样式标记?
答案 0 :(得分:1)
如何将!important
添加到css
,如下所示:
<a href="https://www.mypagehere/" data-emacategory="In-Page Navigation" style="text-decoration:none!important">My Page Title Here</a>