My CSS file includes the following code:
input.myInput {
background-image:url('search.png');
background-size:120px 120px;
}
In my HTML file, I have the following input element:
<input type='text' class='myInput' >
I would like to change the background image size. Can anyone help me with this?