JSFiddle - React, Tailwind, and code Playground

lynda.com - CSS #2 Attribute selectors

by totoromaum

HTML

Search input: <input type="search"><br>
Text input: <input type="text"><br>
Email input: <input type="email"><br>
Submit input: <input type="submit">

CSS

input {
  margin: 10px;
}
[type]{
  border: 1px solid red;
}
[type="search"]{
  /* border: 1px solid blue; */
}