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: "❀";}