hover
語法
hover 特性以從下方列表中選擇的關鍵字值指定。
示例
HTML
html
<a href="#">Try hovering over me!</a>
CSS
css
/* default hover effect */
a:hover {
color: black;
background: yellow;
}
@media (hover: hover) {
/* when hover is supported */
a:hover {
color: white;
background: black;
}
}
結果
規範
| 規範 |
|---|
| 媒體查詢第 4 級 # hover |
瀏覽器相容性
載入中…