求助css,befote,content属性图像的修改方法

图片说明

这样控制的图片,怎么修改图片的大小,和内外边距。。

background-size,padding,margin,size等属性不行

换个思路,1,把图片调小,2.换成背景图

.neirong ul li::before{
        content: '';
        background: url('../../assets/images/success-icon.png') center center no-repeat;
        background-size: cover;
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;

    }

设置 content: "";,然后改用background-image: url(xxxxx.png);