--- title: slug: Web/HTML/Element/small tags: - HTML - 元素 translation_of: Web/HTML/Element/small ---
{{HTMLRef}}

HTML 中的<small>元素將使文本的字体变小一号。(例如从大变成中等,从中等变成小,从小变成超小)。在 HTML5 中,除了它的样式含义,这个元素被重新定义为表示边注释和附属细则,包括版权和法律文本。

{{EmbedInteractiveExample("pages/tabbed/small.html", "tabbed-shorter")}}
内容分类 流式内容, 短语内容
允许的内容 短语内容
标签省略 无,必须拥有起始和结束标签
允许的父元素 接受短语内容或者流式内容的任何元素。
允许的 ARIA 角色 任意
DOM 接口 {{domxref("HTMLElement")}}

属性

这个元素只有全局属性。

DOM 接口

这个元素实现 {{domxref("HTMLElement")}}接口。

接口实现注解:直到 Gecko 1.9.2,Firefox 为这个元素实现了 {{domxref("HTMLSpanElement")}}接口。

例子

例子 1

<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.

例子 2 (CSS 替代)

<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")}}

另请参考