aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/css/direction
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/pt-pt/web/css/direction
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-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/direction')
-rw-r--r--files/pt-pt/web/css/direction/index.html46
1 files changed, 0 insertions, 46 deletions
diff --git a/files/pt-pt/web/css/direction/index.html b/files/pt-pt/web/css/direction/index.html
deleted file mode 100644
index a89e7a1b6c..0000000000
--- a/files/pt-pt/web/css/direction/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: direction
-slug: Web/CSS/direction
-tags:
- - Referencia_CSS
-translation_of: Web/CSS/direction
----
-<p>
-{{ CSSRef() }}
-</p>
-<h3 id="Resumo" name="Resumo"> Resumo </h3>
-<p>The <code>direction</code> property should be set to match the direction of the text: <code>rtl</code> for Hebrew or Arabic text and <code>ltr</code> for other scripts. This should normally be done as part of the document (e.g., using the <code>dir</code> attribute in HTML) rather than through direct use of CSS.
-</p><p>The property sets the base text direction of block-level elements and the direction of embeddings created by the {{ Cssxref("unicode-bidi") }} property. It also sets the default alignment of text and block-level elements and the direction that cells flow within a table row.
-</p>
-<ul><li> Valor inicial: <code>ltr</code>
-</li><li> Aplica-se a: todos os elementos
-</li><li> Herdado: sim
-</li><li> Porcentagens: N/A
-</li><li> Mídia: <a href="pt/CSS/Media/Visual">visual</a>
-</li></ul>
-<h3 id="Sintaxe" name="Sintaxe"> Sintaxe </h3>
-<pre class="eval">direction: [ 'ltr' | 'rtl' | inherit ] ;
-</pre>
-<h3 id="Valores" name="Valores"> Valores </h3>
-<dl><dt> ltr </dt><dd> The default value of <code>direction</code>. Text and other elements go from left to right
-</dd><dt> rtl </dt><dd> Text and other elements go from right to left
-</dd></dl>
-<p>For the <code>direction</code> property to have any effect on inline-level elements, the {{ Cssxref("unicode-bidi") }} property's value must be 'embed' or 'override'.
-</p>
-<h3 id="Exemplos" name="Exemplos"> Exemplos </h3>
-<pre class="eval">blockquote {
- direction : rtl ;
-}
-</pre>
-<h3 id="Notas" name="Notas"> Notas </h3>
-<p>Unlike the <code>dir</code> attribute in HTML, the <code>direction</code> property is not inherited from table columns into table cells, since CSS inheritance follows the document tree, and table cells are inside of the rows but not inside of the columns.
-</p>
-<h3 id="Especifica.C3.A7.C3.A3o" name="Especifica.C3.A7.C3.A3o"> Especificação </h3>
-<ul><li> <a class="external" href="http://www.w3.org/TR/CSS21/visuren.html#direction">CSS 2.1</a>
-</li><li> <a class="external" href="http://www.w3.org/TR/2003/CR-css3-text-20030514/#direction">CSS 3 Text Module</a>
-</li></ul>
-<h3 id="Veja_tamb.C3.A9m" name="Veja_tamb.C3.A9m"> Veja também </h3>
-<p>{{ Cssxref("unicode-bidi") }}
-</p><p><span class="comment">Categorias</span>
-</p><p><span class="comment">Interwiki Language Links</span>
-</p>{{ languages( { "en": "en/CSS/direction", "fr": "fr/CSS/direction", "pl": "pl/CSS/direction" } ) }}