css psedo class

Solutions on MaxInterview for css psedo class by the best coders in the world

showing results for - "css psedo class"
Till
13 Mar 2020
1button:hover {
2  color: blue;
3}
4
5A pseudo-class is a word such as :hover that makes its changes
6to the selected element by adding it along side the selector 
7before the curly braces in CSS instead of inside the curly 
8braces.
9
10You can search for a list of pseudo-class online.
11
12
Alessio
26 Mar 2016
1A pseudo-class is a selector that selects elements that are in a specific state, e.g. they are the first element of their type, or they are being hovered over by the mouse pointer