aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/html/element/big
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/web/html/element/big
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/web/html/element/big')
-rw-r--r--files/de/web/html/element/big/index.html89
1 files changed, 89 insertions, 0 deletions
diff --git a/files/de/web/html/element/big/index.html b/files/de/web/html/element/big/index.html
new file mode 100644
index 0000000000..5515b9798f
--- /dev/null
+++ b/files/de/web/html/element/big/index.html
@@ -0,0 +1,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>