最新的Web開發教程
 

HTML <body> text Attribute

<HTML <body>標籤

指定一個HTML文檔中的文本的顏色:

<html>
<body text="green">
<h1>Hello world!</h1>
<p><a href="http://www.w3ii.com">Visit w3ii.com!</a></p>
</body>
</html>
試一試»

定義和用法

text屬性指定文檔中的文本的顏色。


瀏覽器支持

屬性
text

兼容性說明

<body>文本屬性不支持HTML5。 使用CSS來代替。

CSS語法(在<head> <style>body{color:green}</style>

CSS實例:設置文本的顏色文檔中

在我們的CSS教程中,你可以找到有關的更多詳細信息text顏色屬性


句法

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

屬性值

描述
color_name 指定文本顏色與顏色名稱(如"red"
hex_number 指定文本顏色用十六進制代碼(如"#ff0000"
rgb_number 指定文本顏色的RGB代碼(如"rgb(255,0,0)"

<HTML <body>標籤