aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/javascript/reference/global_objects/string/small
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2021-08-19 15:37:01 +0200
committerGitHub <noreply@github.com>2021-08-19 15:37:01 +0200
commitda778d8d0a9e9622c6a7fba6d1f9fb7d3ebf4a04 (patch)
tree200bff2167620d33c0f2eae583ea228accf88ddb /files/pt-br/web/javascript/reference/global_objects/string/small
parentcd4c71feeb10bea7a09b9da4570b5092a76c350e (diff)
downloadtranslated-content-da778d8d0a9e9622c6a7fba6d1f9fb7d3ebf4a04.tar.gz
translated-content-da778d8d0a9e9622c6a7fba6d1f9fb7d3ebf4a04.tar.bz2
translated-content-da778d8d0a9e9622c6a7fba6d1f9fb7d3ebf4a04.zip
Removes wiki.d.m.o in absolute links (#1903)
Diffstat (limited to 'files/pt-br/web/javascript/reference/global_objects/string/small')
-rw-r--r--files/pt-br/web/javascript/reference/global_objects/string/small/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/pt-br/web/javascript/reference/global_objects/string/small/index.html b/files/pt-br/web/javascript/reference/global_objects/string/small/index.html
index dbec8f2227..a6e2d0809b 100644
--- a/files/pt-br/web/javascript/reference/global_objects/string/small/index.html
+++ b/files/pt-br/web/javascript/reference/global_objects/string/small/index.html
@@ -13,7 +13,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/small
---
<div>{{JSRef}} {{deprecated_header}}</div>
-<p>O método <code>small()</code> cria um elemento HTML <code><a href="https://wiki.developer.mozilla.org/en-US/docs/Web/HTML/Element/small">&lt;small&gt;</a></code> que faz com que uma string seja exibida em uma fonte pequena.</p>
+<p>O método <code>small()</code> cria um elemento HTML <code><a href="/en-US/docs/Web/HTML/Element/small">&lt;small&gt;</a></code> que faz com que uma string seja exibida em uma fonte pequena.</p>
<h2 id="Sintaxe">Sintaxe</h2>
@@ -21,7 +21,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/small
<h3 id="Valor_retornado">Valor retornado</h3>
-<p>Uma string contendo um elemento HTML <code><a href="https://wiki.developer.mozilla.org/en-US/docs/Web/HTML/Element/small">&lt;small&gt;</a></code>.</p>
+<p>Uma string contendo um elemento HTML <code><a href="/en-US/docs/Web/HTML/Element/small">&lt;small&gt;</a></code>.</p>
<h2 id="Descrição">Descrição</h2>
@@ -40,7 +40,7 @@ console.log(worldString.big()); // &lt;big&gt;Olá, mundo&lt;/big&gt;
console.log(worldString.fontsize(7)); // &lt;font size="7"&gt;Olá, mundo&lt;/fontsize&gt;
</pre>
-<p>Com o objeto <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/API/ElementCSSInlineStyle/style">element.style</a> você pode pegar o atributo de estilo do elemento e manipulá-lo de forma mais genérica, por exemplo:</p>
+<p>Com o objeto <a href="/en-US/docs/Web/API/ElementCSSInlineStyle/style">element.style</a> você pode pegar o atributo de estilo do elemento e manipulá-lo de forma mais genérica, por exemplo:</p>
<pre class="brush: js notranslate">document.getElementById('#oIdDoElemento').style.fontSize = '0.7em';
</pre>