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 | 
浏览器兼容性
加载中…