HTML: Pre Tag

The <pre> tag in HTML is used to define preformatted text, where the text is displayed exactly as it appears in the HTML code, including spaces, line breaks, tabs, and other whitespace characters. The name "pre" stands for "preformatted," indicating that the text inside this tag should maintain its original formatting without any alterations. Here are the key points about the <pre> tag:

Usage:

  • The <pre> tag is an inline-level element that defines a block of preformatted text.
  • It is commonly used for displaying code snippets, ASCII art, poetry, or any text where maintaining whitespace and line breaks is crucial.
  • Example:
<pre>
    This is preformatted text.
    It preserves spaces, line breaks,
    tabs, and other whitespace characters.
</pre>

Whitespace Preservation:

  • The primary purpose of the <pre> tag is to preserve the whitespace and formatting of the text as it appears in the HTML code.
  • Spaces, tabs, line breaks, and other whitespace characters are rendered exactly as they are written in the HTML.

Text Rendering:

  • Text inside the <pre> tag is typically rendered using a monospace font (e.g., Courier, Consolas) to maintain alignment and spacing of characters.
  • This monospace font ensures that each character occupies the same amount of horizontal space, making it suitable for displaying code snippets or ASCII art where alignment matters.

Usage Considerations:

  • Use the <pre> tag when you want to display text without any automatic formatting or adjustments by the browser.
  • It's commonly used in technical documentation, programming tutorials, and code examples to maintain the visual integrity of code snippets.
  • Avoid using the <pre> tag for general text content unless preserving whitespace and formatting is essential, as it may affect readability and responsiveness on different screen sizes.

Example with Code Snippet:

  • Below is an example of using the <pre> tag to display a code snippet:
<pre>
    <code>
        function greet(name) {
            return 'Hello, ' + name + '!';
        }
        console.log(greet('Alice'));
    </code>
</pre>

Nested <code> Tag:

  • It's common to nest a <code> tag inside a <pre> tag when displaying code snippets. The <code> tag is used to define inline code within the preformatted block.

Using the <pre> tag appropriately ensures that preformatted text, especially code snippets, is displayed accurately and maintains readability for users who need to view or copy the content.