Has anyone an idea why this span inside of an a override the !important red color?
a {
color: red !important;
}
span {
color: black;
}
<a href="/test">
<span>Test</span>
</a>
Has anyone an idea why this span inside of an a override the !important red color?
a {
color: red !important;
}
span {
color: black;
}
<a href="/test">
<span>Test</span>
</a>