I have this image:
1)
2)
that is being used with icon for <input>
:
' <input type="button" class=" button_add" />'
With CSS I've added it to a li
:
input.button_add {
float: right;
height: 40px;
padding-left: 36px;
background: url("../img/Arrow_Circle_Right-32.png") no-repeat;
position: relative;
top: 50%;
transform: translateY(-50%);
}
In point 2) you can check that the image has no borders, but in the final result the image appears like this:
Is it possible to make these borders disappear?
Thanks for the attention