JSFiddle - React, Tailwind, and code Playground

by arcm111

HTML

<div id="main">
    <div id="mask">
        <div id="cont">
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
            <p>Some text</p>
        </div>
        <div id="bar"></div>
    </div>
</div>

CSS

#main{
    width: 200px;
    background: #333;
    height: 300px;
}
#mask{
    width: 100%;
    min-height: 30px;
    max-height: 300px;
    position: relative;
    overflow: hidden;
}
#cont{
    position: absolute;
    top: 0;
    left: 0;
}
#bar{
    width: 16px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #555;
}