JSFiddle - React, Tailwind, and code Playground

by Andrea Biagi

HTML

<div id="textbox">This is the textbox</div>

CSS

body {
    margin: 0;
}
#textbox {
    width: 100vw;
    height: 100vh;
    
    /* Yellow background to highlight the textbox */
    background-color: yellow;
    
    /* Center text with flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
}