Reputation: 65046
In a CSS stylesheet, I would like to apply a style to all descendants of an element (identified by id="outer"
), as well as the element itself. Is there a more succinct or DRY way to do it than this:
#outer, #outer * {
border: medium solid;
}
Upvotes: 0
Views: 84