国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

元素選擇器

類(lèi)型選擇符(E)的定義和用法:
把文檔中的元素名稱(chēng)作為選擇符。例如div、table、p、span、li、ul等等。
語(yǔ)法結(jié)構(gòu):

E{ Rules }

實(shí)例代碼:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://ask.php.cn/" />
<title>CSS教程</title>
<style type="text/css">
li{color:blue;}
</style>
</head>
<body>
<div>
  <ul>
    <li>php中文網(wǎng)</li>
    <li>php中文網(wǎng)</li>
  </ul>
  <p>php中文網(wǎng)</p>
</div>
</body>
</html>

以上代碼能夠把li元素中的文本顏色設(shè)置為藍(lán)色。


繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://ask.php.cn/" /> <title>CSS教程</title> <style type="text/css"> li{color: #ff392a;} </style> </head> <body> <div> <ul> <li>php中文網(wǎng)</li> <li>php中文網(wǎng)</li> </ul> <p>php中文網(wǎng)</p> </div> </body> </html>
提交重置代碼