JSFiddle - React, Tailwind, and code Playground

by seankoole

HTML

<form action="">
  
  <label for="">
    First name
  </label>
  <input type="text">
  
</form>

CSS

input {
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 10px 15px;
}