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.

list-style

To tłumaczenie jest niekompletne. Pomóż przetłumaczyć ten artykuł z języka angielskiego.

Podsumowanie

Własność list-style jest skrótem ustawienia własności list-style-type, list-style-image oraz list-style-position.

Składnia

list-style: [ list-style-type || list-style-position || list-style-image ] | inherit

Wartości

list-style-type 
Zobacz list-style-type.
list-style-image 
Zobacz list-style-image.
list-style-position 
Zobacz list-style-position.

Przykłady

HTML

List 1
<ul class="one">
  <li>List Item1</li>
  <li>List Item2</li>
  <li>List Item3</li>
</ul>
List 2
<ul class="two">
  <li>List Item A</li>
  <li>List Item B</li>
  <li>List Item C</li>
</ul>

CSS

.one {
  list-style: circle;
}

.two {
  list-style: square inside;
}

Result

Specyfikacje

Kompatybilność z przeglądarkami

Zobacz także

list-style-type, list-style-image, list-style-position

 

Autorzy i etykiety dokumentu

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