aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/css/overflow-wrap/index.html
blob: c23f4b966d1c046b641fb016175ac434eb975509 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
title: word-wrap
slug: Web/CSS/word-wrap
translation_of: Web/CSS/overflow-wrap
---
<div>{{CSSRef}} {{SeeCompatTable}}</div>

<h2 id="Summary" name="Summary">Resumo</h2>

<p>A propriedade <a href="/en/CSS" title="CSS">CSS</a> <code>word-wrap</code> é utilizada para especificar se o navegador pode ou não quebrar linhas dentro das palavras, afim de prevenir o vazamento quando do contrário uma sequencia de caracteres é muito longa para caber na caixa que o contém.</p>

<div class="note"><strong>Nota:</strong> Originalmente uma extensão proprietária da Microsoft (não prefixada), a propriedade <code>word-wrap</code> foi renomeada para <code>overflow-wrap</code> no rascunho atual do texto de especificações do CSS3. Compilações estáveis do Google Chrome e do Opera têm suporte a nova sintaxe.</div>

<p>{{cssinfo}}</p>

<h2 id="Syntax" name="Syntax">Sintaxe</h2>

<pre class="syntaxbox">word-wrap:  normal | break-word</pre>

<h3 id="Values" name="Values">Valores</h3>

<dl>
 <dt><code>normal</code></dt>
 <dd>Indica que as linhas só podem quebrar em pontos de quebra normais de palavras.</dd>
 <dt><code>break-word</code></dt>
 <dd>Indica que as palavras normalmente inquebráveis podem ser quebrados em pontos arbitrários se não houver pontos de quebra de outra forma aceitáveis na linha.</dd>
</dl>

<h2 id="Examples" name="Examples">Exemplos</h2>

<pre class="brush: css">p { width: 13em; background: gold; }</pre>

<p style="width: 13em; background: gold;">FStrPrivFinÄndG (Gesetz zur Änderung des Fernstraßenbauprivatfinanzierungsgesetzes und straßenverkehrsrechtlicher Vorschriften)</p>

<pre class="brush: css">p { width: 13em; background: gold; word-wrap: break-word; }</pre>

<p style="word-wrap: break-word; width: 13em; background: gold;">FStrPrivFinÄndG (Gesetz zur Änderung des Fernstraßenbauprivatfinanzierungsgesetzes und straßenverkehrsrechtlicher Vorschriften)</p>

<h2 id="Specifications" name="Specifications">Especificações</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">Status</th>
   <th scope="col">Comentário</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><a class="external" href="http://dev.w3.org/csswg/css3-text/#overflow-wrap" title="http://dev.w3.org/csswg/css3-text/#overflow-wrap">CSS Text Level 3</a></td>
   <td>{{ Spec2('CSS3 Text') }}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilidade entre navegadores</h2>

<p>{{ CompatibilityTable() }}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Característica</th>
   <th>Firefox (Gecko)</th>
   <th>Chrome</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{ CompatGeckoDesktop("1.9.1") }}</td>
   <td>1.0</td>
   <td>5.5</td>
   <td>10.5</td>
   <td>1.0</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Característica</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>Android</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{ CompatGeckoMobile("1.9.1") }}</td>
   <td>1.0</td>
   <td>{{ CompatUnknown() }}</td>
   <td>{{ CompatUnknown() }}</td>
   <td>1.0</td>
  </tr>
 </tbody>
</table>
</div>

<ul>
 <li><code>word-wrap:break-word</code> pode ser usado para contornar a ausência de suporte para <code>pre{white-space:pre-wrap}</code> no IE 5.5-7. Veja {{ Cssxref("white-space") }} para um exemplo.</li>
 <li>IE8 introduziu <code>-ms-word-wrap</code> como sinônimo para <code>word-wrap</code>. Não use o prefixo <code>-ms-</code>.</li>
</ul>

<h2 id="See_also" name="See_also">Veja também</h2>

<ul>
 <li>Microsoft's original documentation: <a class="external" href="http://msdn.microsoft.com/en-us/library/ms531186(VS.85,loband).aspx" title="http://msdn.microsoft.com/en-us/library/ms531186(VS.85,loband).aspx">MSDN Microsoft library word-wrap</a></li>
</ul>