JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<input type="text" placeholder="testing" style="font-size: 40px">

CSS

:-moz-placeholder {
  color: blue;
}
::-moz-placeholder {
  color: navy;
}
:-ms-input-placeholder {
  color: darkblue;
}
::-webkit-input-placeholder {
  color: blueviolet;
}
::placeholder {
    color: fuschia;	
}

:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-webkit-input-placeholder,
::placeholder {
    color: lawngreen;	
}