aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/html/element/big/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/html/element/big/index.html')
-rw-r--r--files/pt-br/web/html/element/big/index.html80
1 files changed, 80 insertions, 0 deletions
diff --git a/files/pt-br/web/html/element/big/index.html b/files/pt-br/web/html/element/big/index.html
new file mode 100644
index 0000000000..bfabe40970
--- /dev/null
+++ b/files/pt-br/web/html/element/big/index.html
@@ -0,0 +1,80 @@
+---
+title: '<big>: Elemento para deixar o texto maio'
+slug: Web/HTML/Element/big
+translation_of: Web/HTML/Element/big
+---
+<div>{{obsolete_header}}</div>
+
+<p><span class="seoSummary">The obsolete <strong>HTML Big Element</strong> (<strong><code>&lt;big&gt;</code></strong>) renders the enclosed text at a font size one level larger than the surrounding text (<code>medium</code> becomes <code>large</code>, for example).</span> The size is capped at the browser's maximum permitted font size.</p>
+
+<div class="note">
+<p><strong>Usage note: </strong>As it was purely presentational, this element has been removed in <a href="/en-US/docs/Web/Guide/HTML/HTML5" title="/en-US/docs/Web/Guide/HTML/HTML5">HTML5</a> and shouldn't be used anymore. Instead web developers should use the CSS {{cssxref("font-size")}} property to adjust the font size.</p>
+</div>
+
+<h2 id="Atributos">Atributos</h2>
+
+<p>This element has no other attributes than the <a href="/en-US/docs/HTML/global_attributes" title="HTML/global attributes">global attributes</a>, common to all elements.</p>
+
+<h2 id="Examples">Examples</h2>
+
+<p>Here we see examples showing the use of <code>&lt;big&gt;</code> followed by an example showing how to accomplish the same results using modern CSS syntax instead.</p>
+
+<h3 id="Usando_&lt;big>">Usando <code>&lt;big&gt;</code></h3>
+
+<div id="Using_big">
+<p>Este elemento usa o comando <code>&lt;big&gt;</code> para aumentar o tamanho do texto. O elemento é obsoleto, porém aceitável em todos os navegadores.</p>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html">&lt;p&gt;
+ Este é o primeiro texto. &lt;big&gt;Este texto usa big
+para ficar com a aparência maior.&lt;/big&gt;
+&lt;/p&gt;</pre>
+</div>
+
+<h4 id="Resultado">Resultado</h4>
+
+<p>{{EmbedLiveSample("Using_big", 640, 60)}}</p>
+
+<h3 id="Using_CSS_font-size">Using CSS <code>font-size</code></h3>
+
+<p>This example uses the CSS {{cssxref("font-size")}} property to increase the font size by one level.</p>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css">.bigger {
+ font-size: larger;
+}</pre>
+
+<h4 id="HTML_2">HTML</h4>
+
+<pre class="brush: html">&lt;p&gt;
+ This is the first sentence. &lt;span class="bigger"&gt;This whole
+ sentence is in bigger letters.&lt;/span&gt;
+&lt;/p&gt;</pre>
+
+<h4 id="Result">Result</h4>
+
+<p>{{EmbedLiveSample("Using_CSS_font-size", 640, 60)}}</p>
+
+<h2 id="DOM_interface">DOM interface</h2>
+
+<p>This element implements the {{domxref('HTMLElement')}} interface.</p>
+
+<div class="note"><strong>Implementation note: </strong>Up to Gecko 1.9.2 inclusive, Firefox implements the {{domxref('HTMLSpanElement')}} interface for this element.</div>
+
+<h2 id="Browser_compatibility">Browser compatibility</h2>
+
+
+
+<p>{{Compat("html.elements.big")}}</p>
+
+<h2 id="See_also">See also</h2>
+
+<ul>
+ <li>CSS: {{cssxref("font-size")}}, {{cssxref("font")}}</li>
+ <li>HTML: {{htmlelement("small")}}, {{htmlelement("font")}}, {{htmlelement("style")}}</li>
+ <li>HTML 4.01 Specification: <a class="external" href="http://www.w3.org/TR/html4/present/graphics.html#h-15.2">Font Styles</a></li>
+</ul>
+
+<div>{{HTMLRef}}</div>