I want to have a component that looks like a button, but instead of text it should contain an image. Because the standard button does not offer this functionality, I tried to u
If the image does not fit then add properties to a сss class:
.button { background: white url('button.gif') no-repeat top; width: 32px; // button width height: 32px; // button height background-size: contain; border: none; // hide border of button }