To select an element and all its descendant elements:
.media, .media * {color: #f00;}
Is there just one selector I can use instead of two selectors separated by a comma? I'm looking for a more efficient way to type this.
With XPath you have the descendant-or-self axis
descendant-or-self
But there is no such selector in CSS.