I am using the following css for select:
select{
border: 1px solid #707A68;
border-radius: 4px 4px 4px 4px;
margin: 0px 0 5px;
padding: 8px 10px;
}
The border radius does not work in IE and I am Ok with that but the padding is also not rendering. Is there any workaround or am i doing anything wrong? works fine in Chrome and FF
this is the entire code on the page:
<input type="text" placeholder="Hello World" />
<select>
<option> Option one</option>
<option> Option two</option>
</select>
<style>
select{
margin-top:20px;
margin-left:20px;
display:block;
padding:20px;
}
</style>