Something like this
HTML
<button class="img">This button has an image</button>
<button class="img">This button has the same image</button>
CSS
.img {
url: '/testimage.png'
}
Something like this
HTML
<button class="img">This button has an image</button>
<button class="img">This button has the same image</button>
CSS
.img {
url: '/testimage.png'
}
Use background-image property.
.img {
background-image: url("testimage.png");
}