blob: 0af1a85bd08730cdc49c1b4c9f94b1fef66c5bca (
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
---
title: word-break
slug: Web/CSS/word-break
translation_of: Web/CSS/word-break
---
<div>{{CSSRef}}</div>
<h2 id="Riassunto">Riassunto</h2>
<p>La proprietà CSS <code>word-break</code> è usata per specificare come (e se) andare a capo in mezzo alle parole.</p>
<div>{{cssinfo}}</div>
<h2 id="Sintassi">Sintassi</h2>
<pre class="twopartsyntaxbox"><a href="/en-US/docs/CSS/Value_definition_syntax" title="CSS/Value_definition_syntax">Sintassi Formale</a>: {{csssyntax("word-break")}}
</pre>
<pre>word-break: normal
word-break: break-all
word-break: keep-all
word-break: inherit
</pre>
<h3 id="Valore">Valore</h3>
<dl>
<dt><code>normal</code></dt>
<dd>Usa le regole di a-capo predefinite.</dd>
<dt><code>break-all</code></dt>
<dd>Gli a-capo possono essere inseriti tra due caratteri qualsiasi nel testo non-CJK (Cinese/Giapponese/Coreano).</dd>
<dt><code>keep-all</code></dt>
<dd>Non permettere a-capo in mezzo ad una parola nei testi CJK. Il comportamento nei testi non-CJK è lo stesso di <code>normal</code>.</dd>
</dl>
<h2 id="Esempi">Esempi</h2>
<p>{{todo}}</p>
<h2 id="Specifiche">Specifiche</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specifica</th>
<th scope="col">Stato</th>
<th scope="col">Commenti</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Text', '#word-break', 'word-break')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>
<div>{{CompatibilityTable}}</div>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Funzionalità</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Supporto di base</td>
<td>1.0</td>
<td>{{CompatGeckoDesktop("15.0")}}</td>
<td>5.5 [1]</td>
<td>{{CompatNo}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
<tr>
<td><code>keep-all</code></td>
<td>{{CompatNo}} [2]</td>
<td>{{CompatGeckoDesktop("15.0")}}</td>
<td>5.5</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}} [2]</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Funzionalità</th>
<th>Android</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Supporto di base</td>
<td>{{CompatVersionUnknown}}</td>
<td>18.0</td>
<td>{{CompatGeckoMobile("15.0")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>keep-all</code></td>
<td>{{CompatNo}} [2]</td>
<td>{{CompatNo}} [2]</td>
<td>{{CompatGeckoMobile("15.0")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}} [2]</td>
</tr>
</tbody>
</table>
</div>
<p>[1] IE8 ha introdotto<code> -ms-word-break </code>come sinonimo di<code> word-break</code>. Si sconsiglia di usare il prefisso <code>-ms-</code> .</p>
<p>[2] Vedi {{webkitbug("123782")}}.</p>
|