How can I get access to the actual bullet and/or number in CSS selectors for <ul> and <ol>? I’d specifically like to increase the font-size and font-weight of the numbers/bullets to make my items stand out more.
How can I get access to the actual bullet and/or number in CSS selectors
Share
You can’t select them specifically, but you can style the
liand wrap theli‘s contents with aspan(or whatever) and style that differently.jsFiddle.