JSFiddle - React, Tailwind, and code Playground

by vasanthanvas

HTML

<p>The overflow property specifies what to do if the content of an element exceeds the size of the element's box.</p>

<p>overflow:scroll</p>
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>

<p>overflow:hidden</p>
<div class="hidden">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>

CSS

div.scroll {
    background-color: #00FFFF;
    width: 200px;
    height: 100px;
    overflow: scroll;
}

div.hidden {
    background-color: #00FF00;
    width: 200px;
    height: 100px;
    overflow: hidden;
}