Pattern: Missing use of :focus
Issue: -
Checks the presence of a pseudo-class for selectors with :hover
.
a:hover,
a:focus {
}
This rule considers :focus pseudo-class selector defined in the CSS Specifications.
The following pattern are considered violations:
a:hover {
}
The following patterns are not considered violations:
a:hover,
a:focus {
}
a:focus {
}
a:hover {
}
a:focus {
}