JSFiddle - React, Tailwind, and code Playground

by dpnminh

HTML

<input type="text" placeholder="test">
<textarea name="" id="" cols="30" rows="10"></textarea>

CSS

input,
textarea {
    font-size: 24px;
    padding: 10px;
    
    color: green;
    text-shadow: 0px 0px 0px #000;
    -webkit-text-fill-color: transparent;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    color:
    text-shadow: none;
    -webkit-text-fill-color: initial;
}