JSFiddle - React, Tailwind, and code Playground

by Atty Eleti

HTML

<input type="text" placeholder="placeholder" />
<input type="text" value="not disabled" />
<input type="text" placeholder="hello" disabled />

CSS

input {
  color: red;
  width: 150px;
  height:75px;
}

input:disabled {
  color: green;
}

input:disabled::placeholder {
  color: yellow;
}