JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
<input type="text" placeholder="hello">
<textarea name="" id="" cols="30" rows="10">
hello world
</textarea>
CSS
/*********************
* Ignore below this *
*********************/
input, textarea {
background-color: var(--system-input-background-color);
border: var(--system-input-border, 1px solid rgb(169, 169, 169));
font-family: var(--system-font, Arial);
}
input {
padding: var(--system-input-padding, 1px 0px);
}
textarea {
padding: var(--system-input-padding, 2px);
}