I want to create the select box with same style in chrome and mozilla browser. I have designed the select box which I want actually.Its work fine in chrome but in mozilla 'select' arrow appears as button.I want to write the css for mozilla
select{
border:1px solid #ffffff;
background-color: #8b3ca8;
color:#ffffff;
height:30px;
font-size:10pt;
/*width: 150px;
margin-left: 8px; */
width: 199px;
margin-left: 13px;
}
<select>
<option>option1</option>
<option>option2</option>
<option>option3</option>
</select>