php - Simples Differences CSS -
this question has answer here:
- p.classname or .classname p, difference? 2 answers
sorry noob question, difference between:
a.highlight{ color: blue; } and
.highlight a{ color: blue; } markup:
<a href="#" class="highlight">link</a> ?
thanks
a.highlight this select anchor class highlight
when:
.highlight will select anchor descendant of element class highlight
Comments
Post a Comment