我在无法访问的样式表上有a { color: #333 }
,我需要使用以下规则:
.entry-content a:link, a:visited {
color: #E40000 !important;
text-decoration: underline !important;
}
.entry-title a:link, a:visited {
color: #E40000 !important;
text-decoration: none !important;
}
.entry-content a:hover {
color: rgb(27, 137, 169);
text-decoration: underline !important;
}
.entry-title a:hover {
color: rgb(27, 137, 169);
text-decoration: none !important;
}
但他们没有正常工作,因为" a"外部样式表上的元素。
我尝试使用:
.entry-content .entry-title a { color: inherit ; text-decoration: inherit }
但它没有用。我需要摆脱" a"元件。