JSFiddle - React, Tailwind, and code Playground

by Aleksandr Zidyganov

HTML

<form>
    <fieldset>
        <input type="text" placeholder="Placeholder" /> <br><br>
        <input type="password" placeholder="Password" /> <br><br>
        <textarea placeholder="Placeholder"></textarea>
    </fieldset>
</form>

CSS

form {
    margin: 40px;
    }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: red;
    }

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: red;
    }