HTML 文本格式化标签
标签 | 描述 |
定义粗体文本 | |
呈现为被强调的文本 | |
定义斜体字 | |
定义小号字 | |
定义重要文本 | |
定义下标字 | |
定义上标字 | |
定义插入字 | |
定义删除字 |
通常标签 替换加粗标签 来使用, 替换 标签使用。然而,这些标签的含义是不同的: 与 定义粗体或斜体文本。 或者 意味着你要呈现的文本是重要的,所以要突出显示。现今所有主要浏览器都能渲染各种效果的字体。不过,未来浏览器可能会支持更好的渲染效果。文本代码案列:
<html> <body> <b>This text is bold</b> <br /> <strong>This text is strong</strong> <br /> <big>This text is big</big> <br /> <em>This text is emphasized</em> <br /> <i>This text is italic</i> <br /> <small>This text is small</small> <br /> This text contains <sub>subscript</sub> <br /> This text contains <sup>superscript</sup> </body> </html>
预设文本
此例演示如何使用 pre 标签对空行和空格进行控制</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!DOCTYPE html> <html> <body> <pre class="brush:php;toolbar:false"> Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks