JSFiddle - React, Tailwind, and code Playground

by acbabis

HTML

<div id="hamster"> <a href="#thing1">To Thing 1</a>

    <br> <a href="#thing2">To Thing 2</a>

    <br>lorem ipsum
    <br>lorem ipsum
    <br>lorem ipsum
    <br> <span id="thing1">Thing 1</span>

    <br>lorem ipsum
    <br>lorem ipsum
    <br>lorem ipsum
    <br> <span id="thing2">Thing 2</span>

</div>

CSS

div {
    max-height: 50px;
    overflow-y: auto;
}

JavaScript

var item = document.createElement('span');
item.textContent = Math.random();
document.body.appendChild(item);