JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

HTML

Right order
<input type="date" />
<input type="email" />
<input type="text" />
<input type="password" />

<br/><br/>
Wrong order
<input type="date" />
<input type="email" />
<input type="password" />
<input type="text" />

CSS

input[type="date"] +
input[type="email"] + 
input[type="text"]{
    border: 1px solid blue;
}