aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/css/line-break/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/css/line-break/index.html')
-rw-r--r--files/pt-br/web/css/line-break/index.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/files/pt-br/web/css/line-break/index.html b/files/pt-br/web/css/line-break/index.html
new file mode 100644
index 0000000000..5a66eb6999
--- /dev/null
+++ b/files/pt-br/web/css/line-break/index.html
@@ -0,0 +1,64 @@
+---
+title: line-break
+slug: Web/CSS/line-break
+translation_of: Web/CSS/line-break
+---
+<div>{{CSSRef}}{{SeeCompatTable}}</div>
+
+<p>A propriedade CSS <strong><code>line-break</code></strong> é usada para especificar como (ou se) quebrar linhas.</p>
+
+<h2 id="Sintaxe">Sintaxe</h2>
+
+<pre class="brush:css">/* Keyword values */
+line-break: auto;
+line-break: loose;
+line-break: normal;
+line-break: strict;
+
+/* Valores Globais */
+line-break: inherit;
+line-break: initial;
+line-break: unset;
+</pre>
+
+<h3 id="Valores">Valores</h3>
+
+<dl>
+ <dt><code>auto</code></dt>
+ <dd>quebra o texto usando a regra padrão de quebra de linha.</dd>
+ <dt><code>loose</code></dt>
+ <dd>quebra o texto usando a regra de quebra de linha que é mais curta, como um jornal.</dd>
+ <dt><code>normal</code></dt>
+ <dd>quebra o texto usando a regra padrão de quebra de linha.</dd>
+ <dt><code>strict</code></dt>
+ <dd>quebra o texto usando uma regra rigorosa para a quebra de linha.</dd>
+</dl>
+
+<h3 id="Sintaxe_formal">Sintaxe formal</h3>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<h2 id="Especificações">Especificações</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificações</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comentário</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSS3 Text', '#line-break-property', 'line-break')}}</td>
+ <td>{{Spec2('CSS3 Text')}}</td>
+ <td>Definição inicial</td>
+ </tr>
+ </tbody>
+</table>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="Compatibilidade_entre_Navegadores">Compatibilidade entre Navegadores</h2>
+
+<p>{{Compat("css.properties.line-break")}}</p>