JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<div id="divBox1">
  <input type="text" id="txt1">
</div>

CSS

#divBox1 {
  height:300px;
  width:300px;
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-150px;
  margin-top:-150px;
  border:1px solid #000000;
}

#txt1 {
  margin-top:30px;
  width:100%;
  box-sizing: border-box;
}