#css Pseudo-elements select specific parts of an element. ::first-line ::first-line selects the first line of the element. For example, the following sets the text color of the first line of the p element to red. p::first-line { color: red; } ::first-letter ::first-letter selects the first letter of the element. For example, the following sets the color of the first letter of the p element to re..