JSFiddle - React, Tailwind, and code Playground

by Brenton Strine

HTML

<select>
    <option>one</option>
    <option>two</option>
    <option>three</option>
    <option>four</option>
    <option>five</option>
</select>

CSS

select {
    margin: 30px;
    padding:20px;
    
    border-top-style: dashed;
    border-top-width: 0;
    border-top-color: red;
}