Two styles in one href
Two styles in one href
Out of context: Reply #3
- Started
- Last post
- 8 Responses
- YAYPaul0
But you can also just style the span, which is what i usualy do, meaning the general span inside an A tag can be one style, then you can override it with a class.
a{color: #000}
a span{color: #999}
a span.moo{color: #e5e5e5;}<a>cheese<br/><span>monkey</span><br/><span class="moo">pirate</span></a>