- HTML 教程
- HTML 教程
- HTML - 简介
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块和内联元素
- HTML - 样式表
- HTML - 文本格式化
- HTML - 引用
- HTML - 注释
- HTML - 颜色
- HTML - 图像
- HTML - 图像映射
- HTML - iframe
- HTML - 短语标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表格标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 电子邮件链接
- HTML 颜色名称和值
- HTML - 颜色名称
- HTML - RGB 和 RGBA 颜色
- HTML - 十六进制颜色
- HTML - HSL 和 HSLA 颜色
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 标头
- HTML - 头部
- HTML - 网站图标
- HTML - JavaScript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - CSS布局
- HTML - 响应式网页设计
- HTML - 特殊符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - 画布
- HTML API 接口
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSockets
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 杂项
- HTML - 数学标记语言
- HTML - 微观数据
- HTML - 索引数据库
- HTML - Web 消息传递
- HTML - CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - Web 幻灯片台
- HTML 工具
- HTML - 二维码
- HTML - Modernizr
- HTML - 验证器
- HTML 备忘单
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 代码参考
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- HTML - ISO 语言代码
- HTML - 字符编码
- HTML - 已弃用的标签和属性
HTML - section 标签
HTML <section> 标签用于表示 HTML 文档中独立的、自包含的组合内容。此标签包含在 HTML5 中。
<section> 标签类似于 <article> 标签。单个 HTML 文档可以有多个 Section 元素。
当嵌套 HTML <section> 元素时,内部元素表示与外部元素相关的部分。
例如,对社交媒体帖子的评论可以是嵌套在表示社交媒体帖子的部分中的部分元素。它主要用于论坛帖子、杂志或报纸部分、博客条目、产品卡等。
语法
<section> ..... </section>
属性
<section> 标签支持 HTML 的 全局属性 和 事件属性。
<section> 标签示例
下面的示例将说明<section> 标签的用法。在何处、何时以及如何使用 <section> 标签来创建 Section 元素。
使用<section> 标签创建自包含内容
在以下示例中,我们使用 <section> 标签创建了 2 个自包含内容,它们彼此独立,也独立于父级。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML section tag</title>
</head>
<body>
<!-- Creating section Element -->
<h2>HTML 'section' Element</h2>
<section>
<h3>HTML Tags</h3>
<p>
HTML tags are similar to keywords, which specify
how a web browser will format and display content.
A web browser can differentiate between simple content
and HTML content with the use of tags.
</p>
</section>
<section>
<h3>HTML Attributes</h3>
<p>
An attribute is used to define the characteristics
of an HTML element and is placed inside the element's
opening tag. All attributes are made up of two parts:
a name and a value
</p>
</section>
</body>
</html>
<section> 标签的样式
考虑以下示例,我们将在其中使用 <section> 标记并应用 CSS 属性。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML section tag</title>
<style>
section {
width: 300px;
height: 150px;
background-color: aquamarine;
border-radius: 10px;
}
section h3,
p {
margin: 10px 10px;
}
</style>
</head>
<body>
<!--create a section element-->
<h2>HTML 'section' Element</h2>
<section>
<h3>HTML Tags</h3>
<p>
HTML tags are similar to keywords, which specify
how a web browser will format and display content.
A web browser can differentiate between simple content
and HTML content with the use of tags.
</p>
</section>
<section>
<h3>HTML Attributes</h3>
<p>
An attribute is used to define the characteristics
of an HTML element and is placed inside the element's
opening tag. All attributes are made up of two parts:
a name and a value
</p>
</section>
</body>
</html>
嵌套<section> 标签元素
让我们看一下另一个场景,我们将在其中创建一个嵌套的 section 元素。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML section Tag</title>
<style>
section {
margin: 5px;
border-radius: 10px;
padding: 10px;
border: 2px solid black;
}
p {
margin: 10px;
}
</style>
</head>
<body>
<!--create a section element-->
<h2>HTML 'section' Element</h2>
<section>
<h3>HTML Elements</h3>
<p>
HTML Elements are building block of a web page.
It is used to create component for webpages.
</p>
<section>
<h3>HTML Tags</h3>
<p>
HTML tags are similar to keywords, which specify
how a web browser will format and display content.
A web browser can differentiate between simple content
and HTML content with the use of tags.
</p>
</section>
<section>
<h3>HTML Attributes</h3>
<p>
An attribute is used to define the characteristics
of an HTML element and is placed inside the element's
opening tag. All attributes are made up of two parts:
a name and a value
</p>
</section>
</section>
</body>
</html>
在<section> 标签上实现图像
在以下示例中,我们将创建嵌套的“section”元素,以使用 <section> 标签来表示博客文章及其评论的独立内容。
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML section tag</title>
<style>
section img {
width: 200px;
}
</style>
</head>
<body>
<!--create a section element-->
<section>
<h2>Blog post</h2>
<img src="/images/logo.png?v3" alt="qikepu.com logo">
<section>
<h2>Comments</h2>
<p>Dman good...</p>
<p>fabulous...!</p>
</section>
</section>
</body>
</html>
支持的浏览器
浏览器 | |||||
---|---|---|---|---|---|
是否支持 | 6.0 | 9.0 | 4.0 | 5.0 | 11.1 |