Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS first line of text does not play according to css rules Re: first line of text does not play according to css rules

#112350
Kitty Giraudel
Participant

From what you said, I believe there is a use of the :first-line pseudo-selector somewhere.

And since it has the highest specifity, you have 3 options :
– you remove it (recommanded)
– you add another :first-line declaration later in the CSS to override styles (not recommanded)
– you add an element like a span in the first line and set it styles to override what’s wrong (really not recommanded)