1.

How to style the first line of the paragraph as uppercase?

Answer»

The :first-line pseudo-element is USED to STYLE the first formatted line of a paragraph by using text-transform property with VALUE uppercase.

For e.g.

p:first-line { text-transform: uppercase }


Discussion

No Comment Found