Answers for "ajouter image after before css"

CSS
2

aajouter une image dans un before after

h2:before{
	content: '';
    background-image: url(../img/img.svg);
    background-size: 32px 32px;
    display: inline-block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    padding: 0 7px;
}
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language