html總結2
阿新 • • 發佈:2019-03-19
color bold ack round tex 類名 back 手機 -c
(1)選擇器:
1.標簽選擇器:用於修飾同類HTML標簽的共性風格
<style type="text/css"> li{ color:red; font-size:28px; font-family:隸書; } </style>
2.類選擇器(註意在定義類名時,名字前面需要有點):
<style type="text/css"> .blue{color:blue;} …… </style> …… <ul> <li class="blue">家用電器</li> <li>各類書籍</li> <li class="blue">手機數碼</li> <li>日用百貨</li> </ul>
3.ID選擇器(用於控制div塊樣式):
<style> #menu{ width:200px; background:#ccc; font:bold 14px 宋體; } </style> … … <div id="menu"> <ul> <li>家用電器</li> …… </ul> </div>
html總結2