最新的Web開發教程
 

Style fontStyle Property

<Style對象

設置字體用於<p>元素"italic"

document.getElementById("myP").style.fontStyle = "italic";
試一試»

定義和用法

的fontStyle屬性設置或返回的字體樣式是否正常,斜體或傾斜。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

fontstyle的屬性在所有主流瀏覽器的支持。


句法

返回的fontStyle屬性:

object .style.fontStyle

設置的fontStyle屬性:

object .style.fontStyle="normal|italic|oblique|initial|inherit"

屬性值

描述
normal 字體是正常的。 這是默認
italic 字體是斜體
oblique 的字體是在斜
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 正常
返回值: 一個字符串,表示文本的元素中的字體樣式
CSS版本 CSS1

更多示例

可能值的演示:

var listValue = selectTag.options[selectTag.selectedIndex].text;
document.getElementById("myP").style.fontStyle = listValue;
試一試»

返回的字體樣式<p>元素:

alert(document.getElementById("myP").style.fontStyle);
試一試»

相關頁面

CSS教程: CSS字體

CSS參考: font-style property

HTML DOM參考: font property


<Style對象