TIL the hover media feature
POSTED ON:
TAGS: css mdn media-queries
Today I learned!
There's a media feature to test if the system you're operating in can hover.
If you're on a phone or tablet, chances are -- you cannot hover.
But if you're on desktop using a mouse -- you can!
@media (hover: hover) {
a:hover {
background: yellow;
}
}
Related TILs
Tagged: css