當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <basefont> size屬性用法及代碼示例


HTML <basefont> size屬性用於指定文檔的默認font-size。 <basfront>標簽的face和color還有兩個屬性,它們指定文本的顏色和文本的font-family。 HTML 5不支持<basfront>標記。

用法:

<basefont size="number"> 

屬性值:它包含單個值編號,該編號指定文本文檔的font-size。它的默認值為3。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML basefont size Attribute 
    </title> 
      
    <basefont color="red" size="15" 
            face="courier, serif"> 
      
    <style> 
        body { 
            text-align:center; 
        } 
        h1 { 
            font-weight:bold; 
            color:green; 
        } 
        h3 { 
            font-weight:bold; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h3>HTML <basefont> size Attribute </h3> 
      
    <p>A computer science portal for geeks</p> 
      
    <p> 
        <b>Note:</b> The basefont attribute 
        is not supported in html 5 
    </p> 
</body> 
  
</html>

輸出:

支持的瀏覽器:任何瀏覽器均不支持HTML <basefont >> size屬性。



相關用法


注:本文由純淨天空篩選整理自hritikbhatnagar2182大神的英文原創作品 HTML | <basefont> size Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。