JSFiddle - React, Tailwind, and code Playground
HTML
<select></select>
<span>some text next to normal select</span>
<br>
<select class="display"></select>
<span>some text next to select with <i>display: none</i></span>
<br>
<select class="visibility"></select><span>some text next to select with <i>visibility: hidden</i></span>
CSS
.display {
display: none;
}
.visibility {
visibility: hidden;
}