What is the difference between the way this bit of css is written?
.post.name {}
vs
.post .name {}
@Rugg, .post.name grabs the element that has both 'post' and 'name' class where as .post .name grabs elements that have the 'name' class that are descendants of 'post' class
.post.name
.post .name
@chrisp
Awesome, thank you.
What is the difference between the way this bit of css is written?
.post.name {}
vs
.post .name {}
@Rugg,
.post.namegrabs the element that has both 'post' and 'name' class where as.post .namegrabs elements that have the 'name' class that are descendants of 'post' class@chrisp
Awesome, thank you.