aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/html/element/big/index.html
blob: 5515b9798f7416eb86f5715f3660802721fd8abe (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
title: <big>
slug: Web/HTML/Element/big
tags:
  - Element
  - HTML
  - Obsolete
  - Referenz
  - Web
translation_of: Web/HTML/Element/big
---
<div>
 {{obsolete_header}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Das HTML Big Element (<code>&lt;big&gt;</code>) vergrößert die Schrift um einen Wert (zum Beispiel von small nach medium oder von large nach x-large) bis zur maximalen Schriftgröße des Browsers.</p>
<div class="note">
 <p><strong>Hinweis zur Benutzung: </strong>Dadurch, dass dieses Element rein der Darstellung diente, wurde es in <a href="/en-US/docs/Web/Guide/HTML/HTML5" title="/en-US/docs/Web/Guide/HTML/HTML5">HTML5</a> entfernt und sollte nicht mehr verwendet werden. Stattdessen sollten Webentwickler die <a href="/en-US/docs/Web/CSS" title="/en-US/docs/Web/CSS">CSS</a> Eigenschaften nutzen.</p>
</div>
<h2 id="Attribute">Attribute</h2>
<p>Dieses Element hat nicht mehr als die <a href="/en-US/docs/HTML/global_attributes" title="HTML/global attributes">globalen Attribute</a>, wie jedes Element.</p>
<h2 id="Beispiel_1">Beispiel 1</h2>
<pre class="brush:xml">&lt;p&gt;
  Das ist der erste Satz. &lt;big&gt;Der zweite
  Satz wird größer dargestellt.&lt;/big&gt;
&lt;/p&gt;</pre>
<h2 id="Beispiel_2_(CSS_Alternative)">Beispiel 2 (CSS Alternative)</h2>
<pre class="brush:xml">&lt;p&gt;
  Das ist der erste Satz. &lt;span style="font-size:1.2em"&gt;Der zweite
  Satz wird größer dargestellt.&lt;/span&gt;
&lt;/p&gt;</pre>
<h3 id="Ergebnis">Ergebnis</h3>
<p>Das ist der erste Satz. <span style="font-size: 1.2em;">Der zweite Satz wird größer dargestellt.</span></p>
<h2 id="DOM_Schnittstelle">DOM Schnittstelle</h2>
<p>Dieses Element implementiert die {{domxref('HTMLElement')}} Schnittstelle.</p>
<div class="note">
 <strong>Hinweis zur Implementierung: </strong>Bis einschließlich Gecko 1.9.2 implementierte Firefox die {{domxref('HTMLSpanElement')}} Schnittstelle für dieses Element.</div>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
 <table class="compat-table">
  <tbody>
   <tr>
    <th>Feature</th>
    <th>Chrome</th>
    <th>Firefox (Gecko)</th>
    <th>Internet Explorer</th>
    <th>Opera</th>
    <th>Safari</th>
   </tr>
   <tr>
    <td>Basic support</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatVersionUnknown}}</td>
   </tr>
  </tbody>
 </table>
</div>
<div id="compat-mobile">
 <table class="compat-table">
  <tbody>
   <tr>
    <th>Feature</th>
    <th>Android</th>
    <th>Firefox Mobile (Gecko)</th>
    <th>IE Mobile</th>
    <th>Opera Mobile</th>
    <th>Safari Mobile</th>
   </tr>
   <tr>
    <td>Basic support</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatVersionUnknown}}</td>
    <td>{{CompatUnknown}}</td>
    <td>{{CompatNo}}</td>
    <td>{{CompatNo}}</td>
   </tr>
  </tbody>
 </table>
</div>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
 <li>{{htmlelement("small")}}, {{htmlelement("font")}}, {{htmlelement("style")}}</li>
 <li>HTML 4.01 Spezifikation: <a class="external" href="http://www.w3.org/TR/html4/present/graphics.html#h-15.2">Font Styles</a></li>
</ul>
<div>
 {{HTMLRef}}</div>