小蝶 發表
網頁製作不可缺少的CSS,屬性大集合
| 屬性 | 範例 | 說明 | 
| font-family | Font-family:標楷體,新細明體,Arial | 設定字型 | 
| font-size | font-size:16pt | 點(pt)點(px)設定字體大小,可任選一單位 | 
| color | color:red color:#ff0000  | 
      使用色碼或顏色名稱都可以 | 
| font-style | Font-style:italic | 設定字型樣式:italic斜體,nornal正常 | 
| background-color | background-color:red background color:#ff0000  | 
      使用色碼或顏色名稱都可以 | 
| background-attachment | background-attachment:scroll background-attachment:fixed  | 
      設定背景圖片是否固定 scroll(捲動);fixed(固定)l  | 
    
| background-image | background-repeat:repeat-x background-repeat:repeat-y background-repeat:no-repeat  | 
      repeat-x(往X軸延伸排滿) repeat-y(往Y軸延伸排滿) no-repeat(不排滿)  | 
    
| text-decoration | text-decoration:underline text-decoration:overline text-decoration:none  | 
      none(無) underline(底線) overline(上線)  | 
    
| margin-top margin-right margin-bottom margin-left  | 
    margin-top:10pt margin-right:10pt margin-bottom:10px margin-left:10px  | 
    設定文件內文與上下左右邊界距離可用(pt)或(px) | 
| border-top border-bottom border-left border-right  | 
    border-top:solid red border-bottom:solid blue border-right:ridge pink border-left:inset green  | 
    設定上下左右框線 前為邊框樣式(如:solid、dotted) 後為邊框顏色  |