aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/html/element/pre/index.html
blob: e57979b3d395c05da5cc405c05d76b339475af6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: pre
slug: Web/HTML/Element/pre
translation_of: Web/HTML/Element/pre
---
<h2 id="Zusammenfassung">Zusammenfassung</h2>

<p>Dieses Element repräsentiert vorformatierten Text. Text innerhalb dieses Elements wird typischerweise nicht-proportional und genauso wie in der Datei angegeben angezeigt. Leerstellen - sogenannte whitespaces - werden dargestellt wie eingegeben..</p>

<h2 id="Attribute">Attribute</h2>

<p>Wie alle anderen HTML Elemente besitzt dieses Element die <a href="/en/HTML/Global_attributes" rel="internal">globalen Attribute</a>.</p>

<h2 id="Beispiele">Beispiele</h2>

<pre class="brush: html">&lt;!-- Beispiel CSS code --&gt;
&lt;pre&gt;
body {
  color:red;
}
&lt;/pre&gt;
</pre>

<h3 id="Ergebnis">Ergebnis</h3>

<pre>body {
  color:red;
}
</pre>

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li>CSS: {{ Cssxref('white-space') }}, {{ Cssxref('word-break') }}</li>
</ul>

<div>{{HTMLRef}}</div>