html5 - how to increase the font size of bullets of <li> in css? -


this question has answer here:

  • b
  • c
  • d
  • e
  • how increase bullets without affecting text?

    you can wrap content of li span tag :

    li {    font-size: 70px;  }  .li-content {    font-size: 16px;  }
    <ul>    <li><span class="li-content">lorem ipsum dolor sit amet, consectetuer adipiscing elit.</span</li>  </ul>	


    Comments