Is it possible to change the size of an element\'s bullet?
Take a look at the code below:
li {
list-sty
In case you do not want to wrap the content in your s with s, you can also use :before like this:
ul {
list-style: none;
}
li {
position: relative;
padding-left: 15px;
line-height: 16px;
}
li:before {
content: '\2022';
line-height: 16px; /*match the li line-height for vertical centered bullets*/
position: absolute;
left: 0;
}
li.huge:before {
font-size: 30px;
}
li.small:before {
font-size: 10px;
}
Adjust your font sizes on the :before to whatever you would like.
- huge bullet
- smaller bullet
- multi line item with custom
sized bullet
- normal bullet