Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

background-color

Podsumowanie

background-color ustawia kolor tła dla elementu, poprzez wartość koloru lub słowo kluczowe transparent.

Wartość początkowatransparent
Stosowana dowszystkich elementów. It also applies to ::first-letter and ::first-line.
Dziedziczonano
Mediavisual
Wartość wyliczonaIf the value is translucent, the computed value will be the rgba() corresponding one. If it isn't, it will be the rgb() corresponding one. The transparent keyword maps to rgba(0,0,0,0).
Animatableyes, as a color
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Składnia

background-color: color | transparent | inherit

Wartości

color 
Kolor może być określony jako szesnastkowa wartość RGB, normalna wartość RGB lub poprzez użycie jednego z predefiniowanych słów kluczowych określających kolor.
transparent 
Domyślną wartością dla background-color jest transparent, co oznacza, że element nie ma własnego koloru tła, zamiast tego pokazując kolor tła elementu znajdującego się z tyłu.

Przykłady

HTML

<div class="exampleone">
 Lorem ipsum dolor sit amet, consectetuer
</div>

<div class="exampletwo">
  Lorem ipsum dolor sit amet, consectetuer
</div>

<div class="examplethree">
  Lorem ipsum dolor sit amet, consectetuer
</div>

CSS

.exampleone {
  background-color: teal;
  color: white;
}

.exampletwo {
  background-color: rgb(153,102,153);
  color: rgb(255,255,204);
}

.examplethree {
  background-color: #777799;
  color: #FFFFFF;
}

Result

Specyfikacje

Autorzy i etykiety dokumentu

 Autorzy tej strony: SphinxKnight, teoli, Yuichiro, Witia, Mgjbot, Ptak82
 Ostatnia aktualizacja: SphinxKnight,