1.

What is specificity?

Answer»

PSEUDOCLASS :first-letter can refer to the first letter of the ELEMENT, paragraph as below. It is clean approach WITHOUT enclosing the first letter in span tag and applying the required RULE based on the representation.

HTML <p>Booker T</p>

CSS

html {   font-size: 3rem; }   p::first-letter {   border: 1px solid;   font-weight: BOLD;   color: red;  }



Discussion

No Comment Found