JSFiddle - React, Tailwind, and code Playground
by spectralkh
HTML
<html>
<body>
<div class="yo">
<div class="bro">Text</div>
</div>
</body>
</html>
CSS
body {
background-color: black;
}
.yo {
background-image: linear-gradient(120deg, #0B0F25, #0C0D12);
height: 300px;
width: 200px;
overflow: scroll;
}
.bro {
height: 500px;
color: white;
}