JSFiddle - React, Tailwind, and code Playground
by igalst
HTML
<input type="text">
CSS
input {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-webkit-appearance: none;
outline: none;
}
JavaScript
$(function(){
$("input").focus().keyup(function(){
alert($(this).val());
});
});