diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/pt-pt/web/css/background-repeat | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/pt-pt/web/css/background-repeat')
-rw-r--r-- | files/pt-pt/web/css/background-repeat/index.html | 138 |
1 files changed, 0 insertions, 138 deletions
diff --git a/files/pt-pt/web/css/background-repeat/index.html b/files/pt-pt/web/css/background-repeat/index.html deleted file mode 100644 index c8ee0800ce..0000000000 --- a/files/pt-pt/web/css/background-repeat/index.html +++ /dev/null @@ -1,138 +0,0 @@ ---- -title: background-repeat -slug: Web/CSS/background-repeat -tags: - - Referencia_CSS -translation_of: Web/CSS/background-repeat ---- -<p>{{ CSSRef() }}</p> - -<h3 id="Resumo" name="Resumo">Resumo</h3> - -<p><code>background-repeat</code> specifies whether the image is repeated (tiled), and how.</p> - -<ul> - <li>Valor inicial: repeat</li> - <li>Aplica-se a: todos os elementos</li> - <li>Herdado: não</li> - <li>Porcentagens: N/A</li> - <li>Mídia: <a href="pt/CSS/Media/Visual">visual</a></li> - <li>Valor computado: como especificado</li> -</ul> - -<h3 id="Sintaxe" name="Sintaxe">Sintaxe</h3> - -<pre class="eval">background-repeat: repeat | repeat-x | repeat-y | no-repeat | inherit -</pre> - -<h3 id="Valores" name="Valores">Valores</h3> - -<dl> - <dt>repeat</dt> - <dd>A imagem é repetida vertical e horizontalmente.</dd> - <dt>repeat-x</dt> - <dd>A imagem é repetida somente horizontalmente.</dd> - <dt>repeat-y</dt> - <dd>A imagem é repetida somente verticalmente.</dd> - <dt>no-repeat</dt> - <dd>A imagem não é repetida: somente uma cópia da imagem é desenhada.</dd> -</dl> - - -<h2 id="Exemplos">Exemplos</h2> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><ol> - <li>no-repeat - <div class="one">&nbsp;</div> - </li> - <li>repeat - <div class="two">&nbsp;</div> - </li> - <li>repeat-x - <div class="three">&nbsp;</div> - </li> - <li>repeat-y - <div class="four">&nbsp;</div> - </li> - <li>repeat-x, repeat-y (multiple images) - <div class="five">&nbsp;</div> - </li> -</ol></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css">/* Shared for all DIVS in example */ -li {margin-bottom: 12px;} -div { - background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif); - width: 144px; - height: 84px; -} - -/* background repeat CSS */ -.one { - background-repeat: no-repeat; -} -.two { - background-repeat: repeat; -} -.three { - background-repeat: repeat-x; -} -.four { - background-repeat: repeat-y; -} - -/* Multiple images */ -.five { - background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif), - url(https://developer.mozilla.org/static/img/favicon32.png); - background-repeat: repeat-x, - repeat-y; - height: 144px; -}</pre> - -<h3 id="Result">Result</h3> - -<p>In this example, each list item is matched with a different value of <code>background-repeat</code>.</p> - -<p>{{EmbedLiveSample('Exemplos', 240, 360)}}</p> - -<h3 id="Compatibilidade_com_navegadores" name="Compatibilidade_com_navegadores">Compatibilidade com navegadores</h3> - -<table class="standard-table"> - <tbody> - <tr> - <th>Navegador</th> - <th>Versão mais antiga</th> - </tr> - <tr> - <td>Internet Explorer</td> - <td>4</td> - </tr> - <tr> - <td>Firefox</td> - <td>1</td> - </tr> - <tr> - <td>Netscape</td> - <td>4</td> - </tr> - <tr> - <td>Opera</td> - <td>3.5</td> - </tr> - </tbody> -</table> - -<h3 id="Veja_tamb.C3.A9m" name="Veja_tamb.C3.A9m">Veja também</h3> - -<p>{{ Cssxref("background") }}, {{ Cssxref("background-attachment") }}, {{ Cssxref("background-color") }}, {{ Cssxref("background-image") }}, {{ Cssxref("background-position") }}, {{ Cssxref("background-repeat") }}</p> - -<p><span class="comment">Categorias</span></p> - -<p><span class="comment">Interwiki Language Links</span></p> - -<p>{{ languages( { "en": "en/CSS/background-repeat", "fr": "fr/CSS/background-repeat", "pl": "pl/CSS/background-repeat" } ) }}</p> |