????????????????????????????????????????????????????????????????????:hover 選擇器用于選擇鼠標(biāo)指針浮動在上面的元素 例:

1
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 當(dāng)鼠標(biāo)移動到W3Sschool時變?yōu)?/p>

2
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 代碼:
<!DOCTYPE html>
<html>
<head>
<style>
a:hover
{
background-color:yellow;
}
</style>
</head>
<body>
<a >W3Sschool</a>
<a >Google</a>
<a >Wikipedia</a>
<p><b>注釋:</b>:hover 選擇器鼠標(biāo)指針在其上浮動的鏈接設(shè)置樣式。</p>
</body>
</html>
https://www.w3school.com.cn/cssref/selector_hover.asp