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

<< Guida di riferimento ai CSS

- -

Sommario

- -

La proprietà background è una scorciatoia per impostare in un'unica riga i valori di altre proprietà inerenti allo sfondo. background può quindi essere utilizzata per impostare una o più tra le seguenti proprietà: background-attachment, background-color, background-image, background-position, background-repeat.

- - - -

Sintassi

- -
background: [background-color || background-image ||
-    background-repeat || background-attachment ||
-    background-position] | inherit]
-
- -

Valori

- -
-
background-color
-
si veda background-color.
-
background-image 
-
si veda background-image.
-
background-repeat 
-
si veda background-repeat.
-
background-attachment 
-
si veda background-attachment.
-
background-position 
-
si veda background-position.
-
- -

Esempi

- -

HTML

- -
<p class="topbanner">
-  Starry sky<br/>
-  Twinkle twinkle<br/>
-  Starry sky
-</p>
-<p class="warning">Here is a paragraph<p>
- -

CSS

- -
.warning {
-  background: red;
-}
-
-.topbanner {
-  background: url("https://mdn.mozillademos.org/files/11983/starsolid.gif") #00D repeat-y fixed;
-}
-
- -

Result

- -

{{EmbedLiveSample("Esempi")}}

- -

Note

- -

Data una dichiarazione valida, la proprietà background prima imposta le singole proprietà relative al background ai loro valori iniziali, poi assegna i valori esplicitamente indicati nella dichiarazione. Non occorre quindi definire un valore per ognuna delle singole proprietà, ma solo per quelle a cui si desidera assegnare un valore diverso da quello predefinito.

- -

Specifiche

- - - -

Compatibilità con i browser

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

Si veda anche

- -

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

- -

Interwiki Language Links

- -

 

- -

{{ languages( { "de": "de/CSS/background", "en": "en/CSS/background", "es": "es/CSS/background", "fr": "fr/CSS/background", "ja": "ja/CSS/background", "ko": "ko/CSS/background", "pl": "pl/CSS/background", "zh-cn": "cn/CSS/background" } ) }}

-- cgit v1.2.3-54-g00ecf