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-attachment/index.html | 135 ---------------------- 1 file changed, 135 deletions(-) delete mode 100644 files/it/web/css/background-attachment/index.html (limited to 'files/it/web/css/background-attachment/index.html') diff --git a/files/it/web/css/background-attachment/index.html b/files/it/web/css/background-attachment/index.html deleted file mode 100644 index 2f4615c65c..0000000000 --- a/files/it/web/css/background-attachment/index.html +++ /dev/null @@ -1,135 +0,0 @@ ---- -title: background-attachment -slug: Web/CSS/background-attachment -translation_of: Web/CSS/background-attachment ---- -

<< Guida di riferimento ai CSS

- -

Sommario

- -

Se è stata specificata una background-image, la proprietà background-attachment determina se l'immagine è fissa o può scorrere all'interno dell'elemento al quale è assegnata.

- - - -

Sintassi

- -
background-attachment: scroll | fixed | inherit
-
- -

Valori

- -
-
scroll 
-
Se scroll viene specificato, l'immagine di sfondo può scorrere all'interno dell'elemento al quale è assegnata
-
fixed 
-
Se fixed viene specificato, l'immagine di sfondo è fissa nell'elemento che la contiene
-
- -

Esempi

- -

Simple example

- -

CSS

- -
p {
-  background-image: url("https://mdn.mozillademos.org/files/12057/starsolid.gif");
-  background-attachment: fixed;
-}
-
- -

HTML

- -
<p>
-  There were doors all round the hall, but they were all locked; and when
-  Alice had been all the way down one side and up the other, trying every
-  door, she walked sadly down the middle, wondering how she was ever to
-  get out again.
-</p>
- -

Result

- -

{{EmbedLiveSample("Simple_example")}}

- -

Multiple background image support

- -

This property supports multiple background images. You can specify a different <attachment> for each background, separated by commas. Each image is matched with the corresponding attachment type, from first specified to last.

- -

CSS

- -
p {
-  background-image: url("https://mdn.mozillademos.org/files/12057/starsolid.gif"), url("https://mdn.mozillademos.org/files/12059/startransparent.gif");
-  background-attachment: fixed, scroll;
-  background-repeat: no-repeat, repeat-y;
-}
- -

HTML

- -
<p>
-  There were doors all round the hall, but they were all locked; and when
-  Alice had been all the way down one side and up the other, trying every
-  door, she walked sadly down the middle, wondering how she was ever to
-  get out again.
-
-  Suddenly she came upon a little three-legged table, all made of solid
-  glass; there was nothing on it except a tiny golden key, and Alice's
-  first thought was that it might belong to one of the doors of the hall;
-  but, alas! either the locks were too large, or the key was too small,
-  but at any rate it would not open any of them. However, on the second
-  time round, she came upon a low curtain she had not noticed before, and
-  behind it was a little door about fifteen inches high: she tried the
-  little golden key in the lock, and to her great delight it fitted!
-</p>
- -

Result

- -

{{EmbedLiveSample("Multiple_background_image_support")}}

- -

Specifiche

- - - -

Compatibilità con i browser

- - - - - - - - - - - - - - - - - - - - - - - - -
BrowserVersione minima
Internet Explorer4
Firefox1
Netscape6
Opera3.5
- -

Si veda anche

- -

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

- -
 
- -

{{ languages( { "en": "en/CSS/background-attachment", "fr": "fr/CSS/background-attachment", "pl": "pl/CSS/background-attachment" } ) }}

-- cgit v1.2.3-54-g00ecf