Templat:PUU-nomor/styles.css

Dari Wikisumber bahasa Indonesia, perpustakaan bebas
ol .huruf{
    list-style: none; /* remove the default numbering */
}
ol .huruf li::before {
    content: counter(item, lower-alpha) " "; /* add "aa", "bb", etc before each list item */
    counter-increment: item; /* increment the counter for each list item */
}