Increase size of list-style-bullet type

Chris22 picture Chris22 · Dec 9, 2011 · Viewed 56.5k times · Source

Is there a way to increase the size of just the bullet list-style-type using CSS? I don't want to increase the size of the bullet text, just the bullet type. I can't use images or JavaScript either. It has to be something I can embed inside <style> tags within the <head> tag.

Answer

bookcasey picture bookcasey · Dec 9, 2011

Might not work in old version of IE.

li:before{ content:'\00b7'; font-size:100px; }

Demo

For IE6:

Without javascript or images, I would recommend putting a <span>&#183;</span> in the beginning of every list item and styling that.