id
屬性值的樣式,您在定義樣式時(shí)使用#
字符為前綴標(biāo)識(shí)。......
這些標(biāo)識(shí)符通常用于應(yīng)用樣式到元素或使用JavaScript選擇元素。
<element id="id">
id |
Yes | Yes | Yes | Yes | Yes |
以下代碼使用 id
屬性添加樣式到元素。
<!DOCTYPE HTML>
<html>
<style>
#w3clink {
background:grey;
color:white;
padding:5px;
border:thin solid black;
}
</style>
<body>
<a href="http://o2fo.com">web site</a>
<br/>
<a id="w3clink" rel="external nofollow" target="_blank" >W3C web site</a>
</body>
</html>
要應(yīng)用基于 id
屬性值的樣式,您在定義樣式時(shí)使用#
字符為前綴標(biāo)識(shí)。
更多建議: