diff --git a/files/en-us/web/html/element/pre/index.md b/files/en-us/web/html/element/pre/index.md index b707d9c8c363a65..edf71d114a288cf 100644 --- a/files/en-us/web/html/element/pre/index.md +++ b/files/en-us/web/html/element/pre/index.md @@ -7,7 +7,9 @@ browser-compat: html.elements.pre {{HTMLSidebar}} -The **`
`** [HTML](/en-US/docs/Web/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, or [monospaced](https://en.wikipedia.org/wiki/Monospaced_font), font. Whitespace inside this element is displayed as written.
+The **`
`** [HTML](/en-US/docs/Web/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, or [monospaced](https://en.wikipedia.org/wiki/Monospaced_font) 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 `
` tag, the _first_ newline character is stripped.
 
 By default, `
` is a [block-level](/en-US/docs/Glossary/Block-level_content) element, i.e. its default {{cssxref("display")}} value is `block`.