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
|
---
title: background
slug: Web/CSS/background
tags:
- Referencia_CSS
translation_of: Web/CSS/background
---
<p>{{ CSSRef() }}</p>
<h3 id="Introdu.C3.A7.C3.A3o" name="Introdu.C3.A7.C3.A3o">Introdução</h3>
<p>A propriedade <code>background</code> é usada para ajustar os valores do fundo em um único lugar na folha de estilos. <code>background</code> pode ser usada com os seguintes valores adicionais: {{ Cssxref("background-attachment") }}, {{ Cssxref("background-color") }}, {{ Cssxref("background-image") }}, {{ Cssxref("background-position") }}, {{ Cssxref("background-repeat") }}.</p>
<ul>
<li>Valor inicial: veja as propriedades individuais para detalhes;</li>
<li>Aplica-se a: todos os elementos;</li>
<li>Herdado: não;</li>
<li>Porcentagens: reservado para {{ Cssxref("background-position") }};</li>
<li>Mídia: <a href="pt/CSS/Media/Visual">Visual</a>;</li>
<li>Valor computado: veja as propriedades individuais para detalhes.</li>
</ul>
<h3 id="Sintaxe" name="Sintaxe">Sintaxe</h3>
<pre class="eval">background: [<em>background-color</em> ||<em>background-image</em> ||<em>background-repeat</em> ||<em>background-attachment</em> ||<em>background-position</em>] |<em>inherit</em>]
</pre>
<h3 id="Valores" name="Valores">Valores</h3>
<dl>
<dt>background-color</dt>
<dd>Veja <code><a href="pt/CSS/background-color">background-color</a></code>.</dd>
<dt>background-image </dt>
<dd>Veja <code><a href="pt/CSS/background-image">background-image</a></code>.</dd>
<dt>background-repeat </dt>
<dd>Veja <code><a href="pt/CSS/background-repeat">background-repeat</a></code>.</dd>
<dt>background-attachment </dt>
<dd>Veja <code><a href="pt/CSS/background-attachment">background-attachment</a></code>.</dd>
<dt>background-position </dt>
<dd>Veja <code><a href="pt/CSS/background-position">background-position</a></code>.</dd>
</dl>
<h2 id="Exemplos">Exemplos</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p class="topbanner">
Starry sky<br/>
Twinkle twinkle<br/>
Starry sky
</p>
<p class="warning">Here is a paragraph<p></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush:css' highlight:[2,6];">.warning {
background: red;
}
.topbanner {
background: url("https://mdn.mozillademos.org/files/11983/starsolid.gif") #00D repeat-y fixed;
}
</pre>
<h3 id="Result">Result</h3>
<p>{{EmbedLiveSample("Exemplos")}}</p>
<h3 id="Notas" name="Notas">Notas</h3>
<p>Sendo uma declaração válida, a propriedade <code>background</code> ajusta primeiramente o background (fundo) individual para seus valores iniciais, e depois, atribui então os valores especificados na declaração. Você não precisa definir um valor para cada uma das propriedades, apenas para aquelas que você deseja alterar os valores padrões.</p>
<h3 id="Especifica.C3.A7.C3.B5es" name="Especifica.C3.A7.C3.B5es">Especificações</h3>
<ul>
<li><a class="external" href="http://www.w3.org/TR/CSS1#background">CSS 1</a></li>
<li><a class="external" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background">CSS 2.1</a></li>
<li><a class="external" href="http://www.w3.org/TR/2005/WD-css3-background-20050216/#the-background">CSS 3</a></li>
</ul>
<h3 id="Compatibilidade_com_navegadores" name="Compatibilidade_com_navegadores">Compatibilidade com navegadores</h3>
<table class="standard-table">
<tbody>
<tr>
<th>Navegador</th>
<th>Versão mais antiga</th>
</tr>
<tr>
<td>Internet Explorer</td>
<td>4</td>
</tr>
<tr>
<td>Firefox</td>
<td>1</td>
</tr>
<tr>
<td>Netscape</td>
<td>6</td>
</tr>
<tr>
<td>Opera</td>
<td>3.5</td>
</tr>
</tbody>
</table>
<h3 id="Veja_tamb.C3.A9m" name="Veja_tamb.C3.A9m">Veja também</h3>
<p>{{ Cssxref("background") }}, {{ Cssxref("background-attachment") }}, {{ Cssxref("background-color") }}, {{ Cssxref("background-image") }}, {{ Cssxref("background-position") }}, {{ Cssxref("background-repeat") }}</p>
<p><br>
<span class="comment">Categorias</span></p>
<p><span class="comment">Interwiki Language Links</span></p>
<p>{{ languages( { "en": "en/CSS/background", "fr": "fr/CSS/background", "pl": "pl/CSS/background" } ) }}</p>
|