HTML body标签

本文概述

  • 属性
  • 支持的浏览器
HTML < body> 标记定义了显示在浏览器上的HTML文档的主要内容。它可以包含文本内容, 段落, 标题, 图像, 表格, 链接, 视频等。
< body> 必须是< head> 标记之后的第二个元素, 或者应放置在< / head> 和< / html> 标记之间。每个HTML文档都需要该标签, 并且在整个HTML文档中只能使用一次。
句法
< body> Place your Content here........< /body>

以下是有关< body> 标签的一些规范
Display Inline
开始日期/结束日期 开始标签和结束标签
Usage Structural

< !DOCTYPE html> < html> < head> < title> Body Tag< /title> < /head> < body> < h2> Example of body tag< /h2> < p> This paragraph is written between the body tag< /p> < /body> < /html>

立即测试
【HTML body标签】输出:
HTML body标签

文章图片
属性 标记特定的属性
属性 描述
alink color 它定义了文档中活动链接的颜色。 (HTML5不支持)
background URL 它确定文档的背景图像。 (HTML5不支持)
bgcolor color 它确定内容的背景色。 (HTML5不支持)
link color 它确定未访问链接的颜色。 (HTML5不支持)
text color 它确定文档中文本的颜色。 (HTML5不支持)
vlink color 它确定访问的链接的颜色。 (HTML5不支持)
onload 页面加载中的函数调用
onunload 用户离开页面时的函数调用
onfocus 文档受到用户关注时的函数调用。
onblur 文档失去用户关注时的函数调用。
全局属性
< body> 属性在HTML中支持global属性。
事件属性
< body> 属性支持HTML中的Event属性。
支持的浏览器
Element Chrome IE Firefox Opera Safari
< body> Yes Yes Yes Yes Yes

    推荐阅读