• 此頁的 QR Code
  • 刊廣告

  • 統計

    本日訪客數: 60 人次

    本月訪客數:4320 人次

    你的IP是: 38.107.191.94

    線上人數:

Azan 黃贊臣

網頁設計文章的蒐集與整理

Archive for the 'CSS' Category

CSS-font的簡寫

也許有人經常問一些細節問題,如 DIV { FONT: 12px/20px "宋體"; COLOR: #333 } 其中的font:12px/20px到底是什麼意思呢?完整的寫法是: {font-size:12px;line-height:20px;font-family:"宋體";color:#333;} 回答是:12px表示字體大小,20px表示行間距(文字段落上下之間的距離)。

12 五月 2010 at 16:05 - 發表回應

CSS-margin屬性說明(複合指定邊界相關的屬性)

語法:選擇器{margin:1 2 3 4} 屬性值:margin-top 指定上邊界 屬性值:margin-right 指定右邊界 屬性值:margin-bottom 指定下邊界 屬性值:margin-left 指定左邊界

25 二月 2010 at 23:05 - 發表回應

IE8 專屬的CSS Hack來了

這個只有IE8懂的CSS \9 符號 終於行了 margin-top: 7px; /*FF*/ margin-top: 10px \9; /*IE8*/ *margin-top: 9px; /*IE7*/ _margin-top: 5px; /*IE6或更舊的版本*/ 各走各的 互不相干 Google Chrome 瀏覽器也越來越多人用了 所以增加一個 Google Chrome 的 Hack body:nth-of-type(1) #categories{ margin-top: 3px; /* safari 3+, chrome 1+, opera9+ */ } margin-top

13 一月 2010 at 13:39 - 發表回應