Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

<pre>: The Preformatted Text element

BaselineWidely available

The<pre>HTML element represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, ormonospaced font.

Whitespace inside this element is displayed as written, with one exception. If one or more leading newline characters are included immediately following the opening<pre> tag, thefirst newline character is stripped.

<pre> elements' text content is parsed as HTML, so if you want to ensure that your text content stays as plain text, some syntax characters, such as<, may need to be escaped using their respectivecharacter references. Seeescaping ambiguous characters for more information.

<pre> elements commonly contain<code>,<samp>, and<kbd> elements, to represent computer code, computer output, and user input, respectively.

By default,<pre> is ablock-level element, i.e., its defaultdisplay value isblock.

Try it

<pre>             S             A            LUT             M            O N            D  E            DONT          JE SUIS          LA  LAN          G U E  É         L O Q U E N        TE      QUESA       B  O  U  C  H  E      O        P A R I S     T I R E   ET   TIRERA    T O U             JOURS   AUX                  A  L LEM                      ANDS   - Apollinaire</pre>
pre {  font-size: 0.7rem;  margin: 0;}

Attributes

This element only includes theglobal attributes.

widthDeprecatedNon-standard

Contains thepreferred count of characters that a line should have. Though technically still implemented, this attribute has no visual effect; to achieve such an effect, use CSSwidth instead.

wrapNon-standardDeprecated

Is ahint indicating how the overflow must happen. In modern browser this hint is ignored and no visual effect results in its present; to achieve such an effect, use CSSwhite-space instead.

Accessibility

It is important to provide an alternate description for any images or diagrams created using preformatted text. The alternate description should clearly and concisely describe the image or diagram's content.

People experiencing low vision conditions and browsing with the aid of assistive technology such as a screen reader may not understand what the preformatted text characters are representing when they are read out in sequence.

A combination of the<figure> and<figcaption> elements, supplemented by theARIArole andaria-label attributes on thepre element allow the preformattedASCII art to be announced as an image with alternative text, and thefigcaption serving as the image's caption.

Example

html
<figure>  <pre role="img" aria-label="ASCII COW">      ___________________________  &lt; I'm an expert in my field. &gt;      ---------------------------          \   ^__^           \  (oo)\_______              (__)\       )\/\                  ||----w |                  ||     ||  </pre>  <figcaption>    A cow saying, "I'm an expert in my field." The cow is illustrated using    preformatted text characters.  </figcaption></figure>

Examples

Basic example

HTML

html
<p>Using CSS to change the font color is easy.</p><pre><code>body {  color: red;}</code></pre>

Result

Escaping ambiguous characters

Suppose you want to demonstrate HTML code in a<pre> element. The character sequences that define valid HTML tags (starting with< and ending with>) will not be displayed. To display the tag characters as text, you need to escape (at least) the< character using its character reference, so that the sequences no longer define valid tags.

In reality, the HTML parser treats most characters as plain text unless in specific contexts. For example,< code is fine, but<code would be misparsed;&am; is fine, but&amp; is not. However, it's a good practice to escape all ambiguous characters to avoid any confusion, especially if you are programmatically generating HTML and injecting the<pre> content. In this case, here's a good rule of thumb for how to escape characters:

  1. First, write the content out, as you would like it to appear in the HTML document.
  2. Replace any ampersands (&) with&amp;. Do this step first, so that new& characters generated in the next step don't get escaped.
  3. Replace any< characters with&lt;.

This should result in the content being displayed as you intended. The replacement of other HTML syntax characters is optional (like> to&gt;," to&quot;, and' to&apos;), but will do no harm.

HTML

html
<pre><code>let i = 5;if (i &lt; 10 &amp;&amp; i &gt; 0)  return &quot;Single Digit Number&quot;</code></pre>

Result

Technical summary

Content categoriesFlow content, palpable content.
Permitted contentPhrasing content.
Tag omissionNone, both the starting and ending tag are mandatory.
Permitted parents Any element that acceptsflow content.
Implicit ARIA rolegeneric
Permitted ARIA rolesAny
DOM interfaceHTMLPreElement

Specifications

Specification
HTML
# the-pre-element

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp