axayacatl.neocities.org
does anyone know how to do a list with custom bullet points like in the recent entry in css so i don't have to type it out everytime
You mean you want the bullets to automatically alternate between โข and โ?
yes!
Try something like this: li:nth-child(odd) {list-style-type: "โข";} li:nth-child(even) {list-style-type: "โ";}
does anyone know how to do a list with custom bullet points like in the recent entry in css so i don't have to type it out everytime
You mean you want the bullets to automatically alternate between โข and โ?
yes!
Try something like this: li:nth-child(odd) {list-style-type: "โข";} li:nth-child(even) {list-style-type: "โ";}