pseudo-elements and *

Does the universal selector (*) apply to pseudo-elements?

example - given the following

p::first-line {color: red}
* {color: black !important}

Will the first line of each <p> be red or black?

Received on Saturday, 4 November 2000 15:19:27 UTC