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; }
edit:
here cross-browser method checkbox,
Comments
Post a Comment