diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/it/web/css/word-break | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/it/web/css/word-break')
-rw-r--r-- | files/it/web/css/word-break/index.html | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/files/it/web/css/word-break/index.html b/files/it/web/css/word-break/index.html deleted file mode 100644 index 0af1a85bd0..0000000000 --- a/files/it/web/css/word-break/index.html +++ /dev/null @@ -1,131 +0,0 @@ ---- -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> |