CSS Pseudo Classes
CSS pseudo classes elements की special states को design करने के लिए use की जाती है जो document tree में available नहीं है और जिन्हें regular CSS selectors द्वारा target नहीं किया जा सकता है।
Syntax:-
selector:pseudo-class
{
property-name:value;
}
Note:- Pseudo classes हमेशा colon (:) के साथ start होती है।
CSS में कई type की Pseudo Class होती है।
:link
यह anchor pseudo class सिर्फ उन्हीं anchor tags को target करती है जिनमें href attribute define किया गया है।
:visited
यह pseudo class सिर्फ ऐसी links को target करती है जो visit की जा चुकी है।
:hover
जब mouse का cursor किसी element पर ले जाया जाता है तो वह element hover state में चला जाता है।
:active
यह class किसी link या button की pressed state को target करने के लिए use की जाती है।
CSS Pseudo Classes
CSS pseudo classes are used to design special states of elements that are not available in the document tree and that cannot be targeted by regular CSS selectors.
Syntax:-
selector:pseudo-class
{
property-name:value;
}
Note:- Pseudo classes always start with colon (:).
There are many types of Pseudo Classes in CSS.
:link
This anchor pseudo class targets only those anchor tags in which href attribute is defined.
:visited
This pseudo class only targets links that have been visited.
:hover
When the mouse cursor is moved to an element, that element goes into hover state.
:active
This class is used to target the pressed state of a link or button.