跳至內容
bestlong.Wiki
用戶工具
登入
網站工具
工具
顯示頁面
舊版
反向連結
最近更新
多媒體管理器
站台地圖
登入
最近更新
多媒體管理器
站台地圖
足跡:
css
本頁是唯讀的,您可以看到原始碼,但不能更動它。您如果覺得這是誤判,請詢問管理員。
====== CSS : Cascading Style Sheets (串聯樣式表) ====== * http://css.1keydata.com/tw/ * http://www.hsiu28.net/style/ ===== CSS 語法 ===== 選擇器主要有三種: - Type(類別)選擇器 - Class 自訂選擇器 - ID 自訂選擇器 ==== Type(類別)選擇器 ==== <style type="text/css"> <!-- H3, H5 { color : #999999 ; font-family : 細明體 } --> </style> 其中的 H3 與 H5 就是選擇器。 ==== Class 自訂選擇器 ==== CSS宣告檔內容 <style type="text/css"> <!-- .one{ color : #cc6699 ; /*文字色彩*/ font-size : 9pt; /*文字大小*/ } .two{ color : #336699 ; /*文字色彩*/ letter-spacing : 3pt;/*字距*/ font-size : 9pt; /*文字大小*/ } --> </style> HTML內容 <p class="one">這裡的文字是粉色9pt的大小</p> <p class="two">這裡的文字是藍色9pt字的距離4pt的大小</p> <input class="one" type="text" name="T1" size="20" value="這裡是表單"> <table class="two" width="182"> <tr> <td> 這裡是表格 </td> </tr></table> 其中的 .one 與 .two 就是選擇器。 ==== ID 自訂選擇器 ==== CSS宣告檔內容 #one{ color : #cc6699 ; /*文字色彩*/ font-size : 9pt; /*文字大小*/ } #two{ color : #336699 ; /*文字色彩*/ letter-spacing : 3pt;/*字距*/ font-size : 9pt; /*文字大小*/ } HTML內容 <input id="one" type="text" name="T1" size="20" value="這裡是表單"> <table id="two" width="182"> <tr> <td> 這裡是表格 </td> </tr></table> 其中的 #one 與 #two 就是選擇器。 ===== CSS 語法格式 ===== 選擇器 { 屬性1: 設定值; 屬性2: 設定值; ... }
css.1251294496.txt.gz · 上一次變更: 2010/08/23 15:30 (外部編輯)
頁面工具
顯示頁面
舊版
反向連結
回到頁頂