By default, all browsers set font size to the <ul> element's bullet . But something, we need to increase or decrease the bullet's font size.

How to increase bullet size using css. #

So, in this article, we will look at how to change the unordered list's bullet size using css.

Example : How to change bullet font size using css. #
<style>
ul{
  list-style: circle;
}
li::marker {
  color: red;
  font-size: 2em;
}
</style>
  <ul>
  <li>Red</li>
  <li>Green</li>
  <li>Blue</li>
  <li>Yellow</li>
</ul>
Try it Yourself »