CSS list-style-type Özelliği
CSS list-style-type
CssBir listedeki liste işaretleme çeşidini belirler.
Örnek:
Bu örnekte hem sıralı hemde sırasız liste elemanları üzerinde listeleme işaretlerin sitilini değiştireceğiz. ul.yuvarlak {
list-style-type: circle;
}
ul.kare {
list-style-type: square;
}
ol.romarakamlari {
list-style-type: upper-roman;
}
ol.alfabetik {
list-style-type: lower-alpha;
}
ul {
background-color: pink;
}
ol {
background-color: aqua;
}
CSS list-style-type nedir nasıl kullanılır
CSS list-style-type Tarayıcı Desteği
CSS Kodu: | |||||
---|---|---|---|---|---|
list-style-type | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |
CSS list-style-type Değerleri
list-style-type:value;
Yorumlar
Yorum Gönder