10 lines
179 B
HTML
10 lines
179 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#target { color: green; }
|
|
#target::first-line { color: red; }
|
|
</style>
|
|
<div id="target">
|
|
<span>
|
|
<div>This should be green</div>
|
|
</span>
|
|
</div>
|