CSS list-style-image size

后端 未结 11 1381
离开以前
离开以前 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:47

    I'd use:

    li{
       list-style: none;
    }
    li::before{
       content: '';
       display: inline-block;
       height: y;
       width: x;
       background-image: url();
    }
    

提交回复
热议问题