Adding bc to a buttton
i tried googling and found a way that worked for most people which was using the 'background: url()' selector, but that still didn't work for me. so somebody please help.
heres a codepen: https://codepen.io/staticoly/pen/poqXopY
3 Replies
If you're trying to see the moth in your image, play around with the background image properties. Something like
background-size: contain
and background-position: center
should get you started. The picture is really big, so without setting a background-size
of some sort to fit the size of your button, you were just seeing a white part of the image. Hope this helps!that worked, thanks al