JSFiddle - React, Tailwind, and code Playground
by Steve Coffman
HTML
1.<input type="text"></input><br />
2.<input type="password"></input><br />
3.<input type="search"></input><br />
4.<input type="text" readonly></input><br />
5.<input type="password" class="tt-input" disabled></input><br />
6..<input type="password" class="tt-input"></input>
CSS
input[type="text"]:not([readonly]),
input[type="password"]:not([readonly]):not([disabled]),
input[type="search"]:not([readonly]):not([disabled]),
.tt-input:not([disabled]) { background:red; }