php - Simples Differences CSS -


this question has answer here:

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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

node.js - Bad Request - node js ajax post -

uitableview - Create and use custom prototype table cells in xamarin ios using storyboard -