this question has answer here:
- increase size of list-style-bullet type 6 answers
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
Post a Comment