body
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
文档主体元素(document body)
语法
<body 属性="属性值">~标签内容~</body>
<body 属性="属性值">~标签内容~</body>
说明
body元素为文件主题内容最上层元素,在HTML文件中起始标签与终止标签都可省略,但在XHTML中均不可省略
在Strict DTD文档中,body元素“标签内容”中只可包含块级元素,行内元素必须放诸块级元素标签内容中;但在Transitional DTD和Frameset DTD中行内元素可以直接放在body元素“标签内容”中
属性
nbsp;
body元素的属性基本上都是表现性的属性,其中topmargin、bottommargin、marginheight、marginwidth等是浏览器生产商引进的专有属性,是非标准的。这些属性已经被废弃了,而且逐渐被CSS取代。
示范
1.指定文档默认文字颜色及超链接颜色:
<body text="olive">...</body>
2.指定文档的背景色:
<body bgcolor="#B0C4DE">...</body>
3.指定文档的背景图案并且设定背景图案固定:
<body background="src/bg.jpg" bgproperties="fixed">...</body>
<body text="olive">...</body>
2.指定文档的背景色:
<body bgcolor="#B0C4DE">...</body>
3.指定文档的背景图案并且设定背景图案固定:
<body background="src/bg.jpg" bgproperties="fixed">...</body>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素body</title>
</head>
<body text="olive" link="#AAAAFF" alink="blue" vlink="red" background="src/bg.jpg" bgproperties="fixed">
<a href="http://www.baidu.com">baidu</a>
<a href="http://www.visitnorway.com">visitnorway</a>... hypertext<br>
This is an example for HTML <em>body</em>. See it?<br>
我是中文。<br>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素body</title>
</head>
<body text="olive" link="#AAAAFF" alink="blue" vlink="red" background="src/bg.jpg" bgproperties="fixed">
<a href="http://www.baidu.com">baidu</a>
<a href="http://www.visitnorway.com">visitnorway</a>... hypertext<br>
This is an example for HTML <em>body</em>. See it?<br>
我是中文。<br>
</body>
</html>
参阅
无