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


HTML body text用法及代碼示例


HTML <body>文本屬性用於為文檔中的文本定義顏色。

用法:

<body text="color_name | hex_number | rgb_number">

屬性值



  • color_name:它指定文檔中文本的顏色名稱。
  • hex_number:它指定文檔中文本顏色的十六進製代碼。
  • rgb_number:它指定文檔中文本的rgb值

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML body Text Attribute</title> 
</head> 
  
<!-- body tag starts here -->
  
<body text="green"> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h2>HTML <body> Text Attribute</h2> 
        <p>It is a Computer Science portal For Geeks</p> 
    </center> 
</body> 
<!-- body tag ends here -->
  
</html>

輸出:

支持的瀏覽器:<body>文本支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera



相關用法


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