CSS-FONT樣式(轉)

post0發表於2007-08-15
CSS-FONT樣式(轉)[@more@]

font版本:CSS1/CSS2  相容性:IE4+ NS4+ 繼承性:有

語法:

font : font-style || font-variant || font-weight || font-size || line-height || font-family

font : caption | icon | menu | message-box | small-caption | status-bar

取值:

font-style :? CSS1 請參閱 font-style 屬性

font-variant :? CSS1 請參閱 font-variant 屬性

font-weight :? CSS1 請參閱 font-weight 屬性

font-size :? CSS1 請參閱 font-size 屬性

line-height :? CSS1 請參閱 line-height 屬性

font-family :? CSS1 請參閱 font-family 屬性

caption :? CSS2 使用有標題的系統控制元件的文字字型(如按鈕,選單等)

icon :? CSS2 使用圖示標籤的字型

menu :? CSS2 使用選單的字型

message-box :? CSS2 使用資訊對話方塊的文字字型

small-caption :? CSS2 使用小控制元件的字型

status-bar :? CSS2 使用視窗狀態列的字型

說明:

設定或檢索物件中的文字特性。該屬性是複合屬性。

預設值為: normal normal normal medium normal "Times New Roman" 。

第一種宣告方式引數必須按照如上的排列順序。每個引數僅允許有一個值。忽略的將使用其引數對應的獨立屬性的預設值。

對於如何使用使用者端系統可能沒有的字型,可以參閱 @font-face 規則。

對應的指令碼特性為 font 。

示例:

p { font: italic small-caps 600 12pts/18pts 宋體; }

p { font: italic small-caps 600 12pts/150% Courier; }

p { font: italic small-caps 600 12pts/1.5 Courier; }

p { font: italic small-caps 600 12pts/18pts Courier; }

p { font: /18pts serif; }

p { font: oblique 100 24pts; }

H1 { font: 15pt/17pt bold "Arial" normal }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-957343/,如需轉載,請註明出處,否則將追究法律責任。

相關文章