Customize list item bullets using CSS

前端 未结 12 1211
感动是毒
感动是毒 2020-12-15 03:17

Is it possible to change the size of an

  • element\'s bullet?

    Take a look at the code below:

    li {
        list-sty         
    
    
            
  • 12条回答
    •  [愿得一人]
      2020-12-15 04:19

      I assume you mean the size of the bullet at the start of each list item. If that's the case, you can use an image instead of it:

      list-style-image:url('bigger.gif');
      list-style-type:none;
      

      If you meant the actual size of the li element, then you can change that as normal with width and height.

    提交回复
    热议问题