<small>

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

内容分类 流式内容, 短语内容
允许的内容 短语内容
标签省略 无,必须拥有起始和结束标签
允许的父元素 接受短语内容或者流式内容的任何元素。
允许的 ARIA 角色 任意
DOM 接口 HTMLElement

属性

这个元素只有全局属性。

DOM 接口

这个元素实现 HTMLElement接口。

接口实现注解:直到 Gecko 1.9.2,Firefox 为这个元素实现了 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.

规范

Specification Status Comments
HTML5
<small>
Recommendation  
HTML 4.01 Specification
<small>
Recommendation  

注意事项

尽管 <small> 元素,<b> 元素和 <i> 元素被认为违反了结构和样式分离的原则, 但是在HTML5中是允许使用这三个元素的. 读者应该自行判断使用 <small> 还是CSS。

另请参考

文档标签和贡献者