JSFiddle - React, Tailwind, and code Playground

HTML

<input value="without type attribute">
<input value="with type attribute" type="text">

CSS

input[type=text]
{
    border:1px solid #f00;
}