input-button-image

How to change input button image using CSS?

So, I can create an input button with an image using <INPUT type="image" src="/images/Btn.PNG" value=""> But, I can't get the same behavior using CSS. for instance, i've tried <INPUT type="image" class="myButton" value=""> where "myButton" is defined in the css file as .myButton{ background:url(/images/Btn.PNG) no-repeat; cursor:p...

Input button image - not work in Chrome & Safari?

I have the following code in my index.html <li> <select name="cmbtype" style="display:none" id="cmbtype" onChange="Changetype()"> <option value="0"> <input type="image" src="images/ocean.png" value="Play" onclick="previewplay(); " /> </option> </select> </li> In firefox, opera and IE 7 I see the ocean.png and am able to click it. W...