当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <basefont> color属性用法及代码示例


HTML <basefont>颜色属性用于设置文档中的默认字体颜色。

用法:

<basefont color="color_name|hex_number|rgb_number"> 

属性值:


  • color_name用于指定字体颜色的名称。
  • hex_number:用于以十六进制代码指定字体颜色。
  • rgb_number用于根据rgb值指定字体颜色。

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title> 
        HTML basefont color Attribute 
    </title>  
  
    <basefont color="green" size="9">  
</head>  
  
<body style="text-align:center;">  
      
    <h1>GeeksforGeeks</h1>  
      
    <h2>HTML <basefont> color Attribute</h2>  
      
    <p>A computer science portal for geeks</p>  
</body>  
  
</html>

输出:

支持的浏览器:任何浏览器均不支持<basefont> color属性。



相关用法


注:本文由纯净天空筛选整理自hritikbhatnagar2182大神的英文原创作品 HTML | <basefont> color Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。