So I would like to keep dropdown select area same width as the select field itself.
Example in picture:

Here is my code:
Code
<select style="max-width:80" name="select">
<option label="Select 1" value="1">Select 1</option>
<option label="Select 2" value="2">Select 2</option>
<option label="Select 3" value="3">Select 3 is longer than others</option>
</select>
Does any one know how could I fix this to work as I want?