JSFiddle - React, Tailwind, and code Playground

by zainshaikh

HTML

<textarea  name="text" class="boxsizingBorder" id="text" cols="50" rows="3" >Welcome to ZainShaikh.com - your online plain text editor. Enter or paste your text here. To download and save it, click on the button below.</textarea>

CSS

body {
    padding:0;
    margin:0;
    overflow: hidden 
}
html, body { 
    height:100%;
}
textarea {
    border: 1px dotted black;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI';
    font-size: 15px;
    padding: 8px;
    line-height: 24px;
    outline: none;
    overflow: auto;
}

.boxsizingBorder {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}