在html中
html中
規定頁面上的預設字型顏色和字號:
<head> <basefont color="red" size="5" /> </head> <body> <h1>This is a header</h1> <p>This is a paragraph</p> </body>
哪些瀏覽器支援
只有InternetExplorer支援
此元素僅可在 body 元素或 head 元素中使用。 BASEFONT 應該出現在文件 body 中的任何顯示文字之前。
此元素在 Internet Explorer 3.0 以上版本的 HTML 中可用,在 Internet Explorer 4.0 以上版本的腳本中可用。
此元素不會改變內容顯示格式。
此元素不需要關閉標籤。
元素範例程式碼
下面的範例使用 BASEFONT 元素來設定基礎字體大小,而 FONT 元素用來暫時覆寫此設定。
<!-- No BASEFONT size specified yet. --> <BASEFONT SIZE=4> Set the BASEFONT size. <FONT SIZE=2> Temporarily override the BASEFONT size.</FONT> <!-- Resume the BASEFONT size. -->
以上是html中關於