html5 - how to remove default status of Selectbox/Checkbox? -


i'd know, how remove default arrow of selectbox , gradations in checkbox , wanna use custom image on it.

for example, here code.

 <select class="selectparent">      <option value='1'>title</option>      <option value='2'>description</option>       <option value='3'>author</option>  </select>  

i searched solutions remove default status using -webkit- appearance; , -moz- appearance; have no idea in ie. there possibility remove default status in ie?

as same logic, i'd know, how remove default status in checkbox.

<input type="checkbox" name="category" id="category10"/> 

i'll wating answers thx

appearance: none work, this not cross-browser way it.

select, input {     -webkit-appearance: none;     -moz-appearance: none;     appearance: none; } 

demo

edit:

here cross-browser method checkbox,

http://jsfiddle.net/kylq4/1/


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -