JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
<select class="form_select">
<option>the option</option>
</select>
</div>

CSS

.container {
      width: 300px;
      border:1px solid blue;
    }
    select {
      max-width:50px;
    }