From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/it/web/css/background-repeat/index.html | 165 -------------------------- 1 file changed, 165 deletions(-) delete mode 100644 files/it/web/css/background-repeat/index.html (limited to 'files/it/web/css/background-repeat/index.html') diff --git a/files/it/web/css/background-repeat/index.html b/files/it/web/css/background-repeat/index.html deleted file mode 100644 index f020f8dbe1..0000000000 --- a/files/it/web/css/background-repeat/index.html +++ /dev/null @@ -1,165 +0,0 @@ ---- -title: background-repeat -slug: Web/CSS/background-repeat -translation_of: Web/CSS/background-repeat ---- -

 

- -
-

Sommario

- -
Edit section
- -

background-repeat specifica se e come lo sfondo deve essere ripetuto.

- - -
- -
-

Sintassi

- -
background-repeat: repeat | repeat-x | repeat-y | no-repeat | inherit
-
-
- -
-

Valori

- -
Edit section
- -
-
repeat
-
L'immagine viene ripetuta sia orizzontalmente che verticalmente
-
repeat-x
-
L'immagine viene ripetuta solo orizzontalmente
-
repeat-y
-
L'immagine viene ripetuta solo verticalmente
-
no-repeat
-
L'immagine non viene ripetuta: viene visualizzata una sola volta.
-
- -

 

-
-

Esempi

- -

HTML

- -
<ol>
-    <li>no-repeat
-        <div class="one">&nbsp;</div>
-    </li>
-    <li>repeat
-        <div class="two">&nbsp;</div>
-    </li>
-    <li>repeat-x
-        <div class="three">&nbsp;</div>
-    </li>
-    <li>repeat-y
-        <div class="four">&nbsp;</div>
-    </li>
-    <li>repeat-x, repeat-y (multiple images)
-        <div class="five">&nbsp;</div>
-    </li>
-</ol>
- -

CSS

- -
/* Shared for all DIVS in example */
-li {margin-bottom: 12px;}
-div {
-    background-image: url(https://mdn.mozillademos.org/files/12005/starsolid.gif);
-    width: 144px;
-    height: 84px;
-}
-
-/* background repeat CSS */
-.one {
-    background-repeat: no-repeat;
-}
-.two {
-    background-repeat: repeat;
-}
-.three {
-    background-repeat: repeat-x;
-}
-.four {
-    background-repeat: repeat-y;
-}
-
-/* Multiple images */
-.five {
-    background-image:  url(https://mdn.mozillademos.org/files/12005/starsolid.gif),
-                       url(https://developer.mozilla.org/static/img/favicon32.png);
-    background-repeat: repeat-x,
-                       repeat-y;
-    height: 144px;
-}
- -

Result

- -

In this example, each list item is matched with a different value of background-repeat.

- -

{{EmbedLiveSample('Esempi', 240, 360)}}

-
-

Specifiche

- -
Edit section
- - -
- -
-

Compatibilità tra browser

- - -
Edit section
- - - - - - - - - - - - - - - - - - - - - - - - -
Browser -

Versione più vecchia

-
Internet Explorer4
Firefox1
Netscape4
Opera3.5
-
- -
-

Vedere anche

- - -
Edit section
- -

background , background-attachment , background-color , background-image , background-position , background-repeat

-
- -

 

-- cgit v1.2.3-54-g00ecf