Hi Andreas,
p.ich:before { content:'Ich:'; font-weight:bold; float:left; width:3em; }
p.ottonormalverbraucher:before { content:'Otto Normalverbraucher:'; font-weight:bold; float:left; width:18em; }
p:nth-child(odd)::before { content:"Ich: " }
p:nth-child(even)::before { content:"Sie: " }
p:nth-of-type(2n+1)::before { content:"Ich: " }
p:nth-of-type(2n)::before { content:"Sie: " }
käme auch ohne Klassen aus.
Gesprächspartnerinnenkompatibel dürften diese Selektoren sein:
p::before { content:"Ich: " }
p:contains("schuld")::before { content:"Sie: " }
;-)
Grüße,
Roland