JSFiddle - React, Tailwind, and code Playground

by booktu8

HTML

<input type="text" />
<button>
搜索
</button>
<textarea cols="30" rows="10"></textarea>请留言

CSS

button {
  cursor: pointer;
}

input {
  outline: none;
}

input {
  width: 150px;
  height: 40px;
  padding-left: 20px;
  border: 1px solid deeppink;
  color: pink;
  font-size: 20px;
}
textarea{
  outline:none;
resize:none;
vertical-align:middle;
}