Списки

list-style

Задает в сокращенном виде: тип списка, расположение маркеров, изображение маркеров

ul {
    list-style: disc url (images/bullet.gif) inside;
}

list-style-image

URL файла изображения маркера

  • none - по умолчанию

  • URL

ul {
    list-style-image: url (images/bullet.gif);
}

list-style-position

Расположение маркеров относительно элемента в списке

  • outside - по умолчанию

  • inside

ul {
    list-style-position: inside;
}

list-style-type

Маркер для списка

  • disc

  • circle

  • square

  • decimal

  • lower-roman

  • upper-roman

  • lower-alpha

  • upper-alpha

  • none

ul {
    list-style-type: square;
}