hover
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since December 2018.
構文
例
HTML
html
<a href="#">Try hovering over me!</a>
CSS
css
/* 既定のホバー効果 */
a:hover {
color: black;
background: yellow;
}
@media (hover: hover) {
/* ホバーに対応している場合 */
a:hover {
color: white;
background: black;
}
}
結果
仕様書
Specification |
---|
Media Queries Level 4 # hover |