Selectmenu (popup menu)

by Akram kamal

HTML

<div class="ui-field-contain">
  <label for="select-choice-1" class="select">Shipping method:</label>
  <select name="select-choice-1" id="select-choice-1">
    <option value="standard">Standard: 7 day</option>
    <option value="rush">Rush: 3 days</option>
    <option value="express">Express: next day</option>
    <option value="overnight">Overnight</option>
  </select>
</div>

CSS

#select-choice-1-button{width:80px}