---
title:
slug: Web/HTML/Element/small
tags:
- HTML
- 元素
translation_of: Web/HTML/Element/small
---
HTML 中的<small>元素將使文本的字体变小一号。(例如从大变成中等,从中等变成小,从小变成超小)。在 HTML5 中,除了它的样式含义,这个元素被重新定义为表示边注释和附属细则,包括版权和法律文本。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
内容分类 | 流式内容, 短语内容 |
---|---|
允许的内容 | 短语内容 |
标签省略 | 无,必须拥有起始和结束标签 |
允许的父元素 | 接受短语内容或者流式内容的任何元素。 |
允许的 ARIA 角色 | 任意 |
DOM 接口 | {{domxref("HTMLElement")}} |
这个元素只有全局属性。
这个元素实现 {{domxref("HTMLElement")}}接口。
接口实现注解:直到 Gecko 1.9.2,Firefox 为这个元素实现了 {{domxref("HTMLSpanElement")}}接口。
<p>This is the first sentence. <small>This whole sentence is in small letters.</small></p>
This is the first sentence. This whole sentence is in small letters.
<p>This is the first sentence. <span style="font-size:0.8em">This whole sentence is in small letters.</span></p>
This is the first sentence. This whole sentence is in small letters.
规范 | 状态 | 注释 |
---|---|---|
{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-small-element', '<small>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', '/present/graphics.html#edef-SMALL', '<small>')}} | {{Spec2('HTML4.01')}} |
尽管 <small> 元素,<b> 元素和 <i> 元素被认为违反了结构和样式分离的原则,但是在 HTML5 中是允许使用这三个元素的。读者应该自行判断使用 <small> 还是 CSS。
{{Compat("html.elements.small")}}