I've been looking at this question on stack - How to style a <select> dropdown with CSS only without JavaScript? and wondering if it is possible to use rounded corners using this technique.
In the examples i've knocked up as a test it's not been possible as the select box seems to be pertrude in the background. I think the technique is decent for getting a reasonable level of control over the styling of the boxes whilst still keeping native OS support which is what i'm after in this instance. If it proves too difficult to use rounded corners in this technique then i'll just drop it.
Heres a nice jsfidle - http://jsfiddle.net/danield770/YvCHW/6/
My css is currently something like this.
.styled-select select {
background: transparent;
width: 268px;
font-size: 16px;
line-height: 1;
border: 0;
height: 28px;
}
.styled-select{
padding: 0;
width: 240px;
height: 28px;
overflow: hidden;
background: url(images/drop.png) no-repeat right #fff;
border: 1px solid #ccc;
}