CSS list-style-image size

后端 未结 11 1405
离开以前
离开以前 2020-12-02 10:24

I\'m trying to set custom SVG icons with CSS on a

    \'s list items. Example:

11条回答
  •  爱一瞬间的悲伤
    2020-12-02 10:56

    I achieved it by placing the image tag before the li's:


    HTML

    
    

    CSS

         .listImage{
          float:left;
          margin:2px;
          width:25px
         }
         .li{
          margin-left:29px;
         }
    

提交回复
热议问题