Q&A
Ask and answer questions to make information more available to wider audiences.
Katelyn Linton @lintonkatelyn   23, Apr 2023 12:00 AM
Pseudo classes
What are Pseudo classes?
answers 1
 
Answer 1
David Brasco @davidbrasco89   28, Apr 2023 11:07 AM
Pseudo-classes are the type of pseudo-elements that don’t exist in a normal document tree. It allows selecting the regular elements under certain conditions especially when we try to hover over the link; the anchor tags are :link, :visited, :hover, :active, :focus
In this example, the color will be red on the anchor tag when it’s hovered.

/* mouse over link */
a:hover {
color: #FFFOOFF;
}