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
October 21, 2012 at 5:04 pm
#112350
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)