aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/css/line-break/index.html
blob: 5a66eb6999cc5e8775bde4dff3423c63b6a7f2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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>