在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. -->
Atas ialah kandungan terperinci html中关于<basefont> 标签的定义与使用详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!