CSS list-style-image size

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

    I'm using:

    li {
    	margin: 0;
    	padding: 36px 0 36px 84px;
    	list-style: none;
    	background-image: url("../../images/checked_red.svg");
    	background-repeat: no-repeat;
    	background-position: left center;
    	background-size: 40px;
    }

    where background-size set the background image size.

提交回复
热议问题