JSFiddle - React, Tailwind, and code Playground

by martinba

HTML

<html>
<header>
</header>
<body>


<select size="2">
   <option value="0" selected="selected">Default</option>
   <option value="1">select 1</option>
   <option value="2">select 2</option>
   <option value="3">select 3</option>
</select>

</body>
</html>

CSS

body {
 font-size: 30px; 
}

select {
    height: 250px;
    font-size: 30px;
    line-height: 30px;
    -webkit-appearance: menulist-textfield;
    border: 1px solid black;
}