This is the code for my select box:
<select id="username" name="username" class="form-select ajax-processed" onchange="f1(this.value)">
<option value="">Select User</option>
</select>
And style used for this is:
input.form-text,textarea.form-textarea,select.form-select {
border: 1px solid #ccc;
width: 180px;
font-size: 12px;
outline: none;
outline-color: #ccc;
}
How to make chrome combo box look same as Mozilla?
when writing -webkit-appearance
It does not work for the google chrome. Tried to search a lot but no result. Thank you all for your help…