本章要跟大家介紹CSS什麼是id 和 Class選擇器? id 和 Class選擇器的用法(實例)。有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
一、id 選擇器
id 選擇器可以為標有特定 id 的 HTML 元素指定特定的樣式。
HTML元素以id屬性來設定id選擇器,CSS 中 id 選擇器以 "#" 來定義。
以下的樣式規則套用於元素屬性id="demo",id="para1":
#demo{ width: 500px; height: 200px; margin: 50px auto; } #para1 { text-align:center; color:red; }
注意:ID屬性不要以數字開頭,數字開頭的ID在Mozilla/Firefox瀏覽器中無法運作。
範例程式碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>id 选择器</title> <style> #demo{ width: 500px; height: 200px; margin: 50px auto; } #para1 { text-align:center; color:red; } </style> </head> <body> <div id="demo"> <p id="para1">Hello World!</p> <p>这个段落不受该样式的影响。</p> </div> </body> </html>
效果圖:
#二、class 選擇器
class 選擇器用來描述一組元素的樣式,class 選擇器有別於id選擇器,class可以在多個元素中使用。
class 選擇器在HTML中以class屬性表示, 在CSS 中,類別選擇器以一個點"."號顯示:
在以下的範例中,所有擁有center 類別的HTML 元素均為居中。
.center {text-align:center;}
範例程式碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>class 选择器/title> <style> .center { text-align:center; } </style> </head> <body> <h1 class="center">标题居中</h1> <p class="center">段落居中。</p> </body> </html>
效果圖:
#你也可以指定特定的HTML元素使用class。
在以下實例中, 所有的p 元素使用class="center" 讓該元素的文字居中:
p.center {text-align:center;}
注意:類別名稱的第一個字符不能使用數字!它無法在 Mozilla 或 Firefox 中起作用。
程式碼實例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css教程</title> <style> p.center { text-align:center; } </style> </head> <body> <h1 class="center">这个标题不受影响</h1> <p class="center">这个段落居中对齐。</p> </body> </html>
效果圖:
以上是CSS什麼是id 和 Class選擇器? id 和 Class選擇器的用法(實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!