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
相關用法
- HTML <body> alink屬性用法及代碼示例
- HTML <body> vlink屬性用法及代碼示例
- HTML <body> background屬性用法及代碼示例
- HTML <body> link屬性用法及代碼示例
- HTML <body> bgcolor屬性用法及代碼示例
- HTML <body>用法及代碼示例
- HTML DOM Body用法及代碼示例
- HTML DOM body用法及代碼示例
- HTML input text用法及代碼示例
- HTML Input Text value用法及代碼示例
注:本文由純淨天空篩選整理自hritikbhatnagar2182大神的英文原創作品 HTML | body text Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。