JSFiddle - React, Tailwind, and code Playground

by rjasoriano

HTML

<input type="text" name="email"  />
<input type="submit" value="»" />

CSS

body {
    background: #ccc;
}

input[type=text] {
  width: 218px;
  height: 500px;
}

input[type=submit] {
  background: #000;
  color: #fff;
}

input[type=submit], input[type=text] {
padding: 9px;
font-size: 18px;
line-height: 18px;
float: left;
border: 0;
display: block;
margin: 0;
}