aboutsummaryrefslogtreecommitdiff
path: root/files/ca/web/html/element/big/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ca/web/html/element/big/index.html')
-rw-r--r--files/ca/web/html/element/big/index.html107
1 files changed, 107 insertions, 0 deletions
diff --git a/files/ca/web/html/element/big/index.html b/files/ca/web/html/element/big/index.html
new file mode 100644
index 0000000000..cf7a7a3cd1
--- /dev/null
+++ b/files/ca/web/html/element/big/index.html
@@ -0,0 +1,107 @@
+---
+title: <big>
+slug: Web/HTML/Element/big
+tags:
+ - Element
+ - HTML
+ - Obsolete
+ - Reference
+ - Web
+translation_of: Web/HTML/Element/big
+---
+<div>{{obsolete_header}}</div>
+
+<h2 id="Sumari">Sumari</h2>
+
+<p>L'Element HTML gran (<code>&lt;big&gt;</code>) fa que la mida de la lletra del text sigui d'una mida més gran (per exemple, de petites a mitjanes, o de grans a x-gran) fins a la mida de la font màxima del navegador.</p>
+
+<div class="note">
+<p><strong>Nota d'ùs: </strong>Com solament era de presentació, aquest element s'ha eliminat en <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5" title="/en-US/docs/Web/Guide/HTML/HTML5">HTML5</a> i no s'ha d'utilitzar més. En lloc d'això els desenvolupadors web han d'usar les propietats <a href="https://developer.mozilla.org/en-US/docs/Web/CSS" title="/en-US/docs/Web/CSS">CSS</a> .</p>
+</div>
+
+<h2 id="Atributs">Atributs</h2>
+
+<p>Aquest element no té altres atributs que els <a href="/en-US/docs/HTML/global_attributes" title="HTML/global attributes">atributs globals</a>, comuns a tots els elements.</p>
+
+<h2 id="Exemple_1">Exemple 1</h2>
+
+<pre class="brush:xml">&lt;p&gt;
+ This is the first sentence. &lt;big&gt;This whole
+ sentence is in bigger letters.&lt;/big&gt;
+&lt;/p&gt;</pre>
+
+<h2 id="Exemple_2_(CSS_alternatiu)">Exemple 2 (CSS alternatiu)</h2>
+
+<pre class="brush:xml">&lt;p&gt;
+ This is the first sentence. &lt;span style="font-size:1.2em"&gt;This whole
+ sentence is in bigger letters.&lt;/span&gt;
+&lt;/p&gt;</pre>
+
+<h3 id="Resultat">Resultat</h3>
+
+<p>This is the first sentence. <span style="font-size: 1.2em;">This whole sentence is in bigger letters.</span></p>
+
+<h2 id="Interfície_DOM">Interfície DOM</h2>
+
+<p>Aquest element implementa la interfície {{domxref('HTMLElement')}}.</p>
+
+<div class="note"><strong>Nota d'implementació: </strong>Fins Gecko 1.9.2 inclossos, Firefox implementa per aquest element la interfície {{domxref('HTMLSpanElement')}}.</div>
+
+<h2 id="Navegadors_compatibles">Navegadors compatibles</h2>
+
+<p>{{CompatibilityTable}}</p>
+
+<div id="compat-desktop">
+<table class="compat-table">
+ <tbody>
+ <tr>
+ <th>Característica</th>
+ <th>Chrome</th>
+ <th>Firefox (Gecko)</th>
+ <th>Internet Explorer</th>
+ <th>Opera</th>
+ <th>Safari</th>
+ </tr>
+ <tr>
+ <td>Suport bàsic</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>Característica</th>
+ <th>Android</th>
+ <th>Firefox Mobile (Gecko)</th>
+ <th>IE Mobile</th>
+ <th>Opera Mobile</th>
+ <th>Safari Mobile</th>
+ </tr>
+ <tr>
+ <td>Suport bàsic</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatVersionUnknown}}</td>
+ <td>{{CompatUnknown}}</td>
+ <td>{{CompatNo}}</td>
+ <td>{{CompatNo}}</td>
+ </tr>
+ </tbody>
+</table>
+</div>
+
+<h2 id="Veure">Veure</h2>
+
+<ul>
+ <li>{{htmlelement("small")}}, {{htmlelement("font")}}, {{htmlelement("style")}}</li>
+ <li>Especificacións HTML 4.01: <a class="external" href="http://www.w3.org/TR/html4/present/graphics.html#h-15.2">Font Styles</a></li>
+</ul>
+
+<div>{{HTMLRef}}</div>