As far as I know, this is the only way to do this using pure CSS using a :first-linepseudo element
Concept
Add a "visual pointer" to each element, by default.
Select each :first-lineitem to reset styles.
<code>
<div class="line">Too much code at one line. Learn to write shorter lines!</div>
<div class="line">Lonely line.</div>
...
</code>
CSS:
code {display: block; width: 150px;}
code .line { color: red; }
code .line:first-line { color: #000; }
( , " " ):
