css - selectbox selection color -
is there possiblity change selection color in box? can find answears how change color on hover, want change background-color of selected items.
i tried selectors:
option[selected]{ background-color: red; } option:checked{ background-color: red; }
but had no luck
if u want custom colored/styled checkbox ,the best way cross browser compatibility , version compatibility designing own checkbox button image. create hidden checkbox , trigger properties via custom checkbox. events onmouseover, onmouseout, onkeydown, onkeyup, onclick etc u exaxtly simulate functions , behaviour of regular checkbox, customizable.
Comments
Post a Comment