HTML/Elemente/pre
Aus SELFHTML-Wiki
Das pre-Element erlaubt es, Text so darzustellen, wie er im Editor eingegeben wird.
- Syntax
- Start-Tag: notwendig
- End-Tag: notwendig
- WAI‑ARIA‑Rolle
-
- keine
- Elternelemente
- Darf vorkommen in:
- erlaubte Inhalte
-
- Text
- beliebig viele Elemente mit phrasing content
Beispiel
<pre>
<code class="language-php">
<?php
echo "Hallo, Welt\n";
?>
</code>
</pre>
Das pre
-Element enthält PHP-Code innerhalb eines code-Elements.
Siehe auch
- HTML/Tutorials/Code in HTML darstellen
- Typografie/Textformatierung (Leerräume mit white-space)
Weblinks
- Spezifikation (W3C): the pre element
- mediatemple: Considerations for styling the < pre > tag vom 26.05.2015
Textstrukturierung