Reputation: 456
I want to align the option container match with the select tag. I don't use any margin (or) padding as of now but still my dropdown options is shown as below:
Option container is aligned bit left.
Upvotes: 0
Views: 1438
Reputation: 3668
there is a simple way to solve this question:
<select>
<option value="">--Select Category</option>
<option value=""> Option One</option>
<option value=""> Option Two</option>
<option value=""> Option Three</option>
</select>
demo ---->http://jsfiddle.net/Junkie/tKc4d/6/
Upvotes: 1