how to add a selection in css

49

*, *:after, *:before {
     box-sizing: border-box;
}

<select>
    <option value="tesla">Tesla</option>
    <option value="volvo">Volvo</option>
    <option value="mercedes">Mercedes</option>
</select">

Comments

Submit
0 Comments