例
設置不同的字體樣式為三段:
p.normal {
font-style: normal;
}
p.italic {
font-style: italic;
}
p.oblique {
font-style: oblique;
}
試一試» 定義和用法
該font-style屬性指定的文本的字體樣式。
默認值: | normal |
---|---|
遺傳: | yes |
動畫: | no. Read about animatable |
版: | CSS1 |
JavaScript語法: | object .style.fontStyle="italic" Try it |
瀏覽器支持
在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
font-style | 1.0 | 4 | 1.0 | 1.0 | 7 |
CSS語法
font-style: normal|italic|oblique|initial|inherit;
屬性值
值 | 描述 | 播放 |
---|---|---|
normal | 瀏覽器顯示一個正常的字體樣式。 這是默認 | 播放 ” |
italic | 瀏覽器會顯示一個斜體字體樣式 | 播放 ” |
oblique | 瀏覽器會顯示一個傾斜的字體樣式 | 播放 ” |
initial | 將此屬性設置為默認值。 閱讀關於初始 | 播放 ” |
inherit | 繼承其父元素此屬性。 閱讀關於繼承 |
相關頁面
CSS教程: CSS字體
CSS參考: font property
HTML DOM參考: fontStyle property