idev0085 / react-boilerplate

0 stars 0 forks source link

psudo element in css #121

Open idev0085 opened 1 year ago

idev0085 commented 1 year ago

A CSS pseudo-element is a keyword added to a selector that lets you style a specific part of the selected element(s). For example, ::first-line can be used to change the font of the first line of a paragraph. /* The first line of every <p> element. */ p::first-line { color: blue; text-transform: uppercase; }