Reputation: 91660
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.
Upvotes: 6
Views: 488
Reputation: 341
Use display-block whenever you are styling inline elements.(e.g: <a>, <span>
...)Its a minor thing to remember but usually people forgot it.
Upvotes: 0