5 .one::first-line { color:green }
7 ul::first-line { color:green }
9 .three::first-letter { font-size:
300%; }
10 .three { color: red; }
11 .three
> span { color: green; }
13 .four { display: inline-block; color: red; }
14 .four::first-line { color:green; }
18 <p class=
"one">All of this
<span>text should be
</span> green.
</p>
20 <ul><li>All of this text should be green. The bullet should be black.
</li></ul>
22 <div class=
"three"><span>All of this text should be green, including the big
"A" first-letter.
</span></div>
26 <div><div class=
"four">This text should be green.
</div></div>