Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.scroller {
display: grid;
width: 100px;
height: 100px;
overflow: auto;
border: 1px solid black;
margin-bottom: 10px;
grid-template-columns: 40px 40px 40px;
grid-template-rows: repeat(2, min-content);
font: 16px/1 Ahem;
}
.first { justify-items: first baseline; }
.last { justify-items: last baseline; }
.scroller > div { height: 30px; text-decoration: underline; }
</style>
</head>
<body>
<div class="scroller first" id="first">
<div style="grid-column: 1; grid-row: 1; width: 22px; font-size: 24px; background: coral;">A</div>
<div style="grid-column: 1; grid-row: 2; width: 30px; font-size: 12px; background: goldenrod;">D</div>
<div style="grid-column: 2; grid-row: 1; width: 34px; font-size: 20px; background: steelblue;">B</div>
<div style="grid-column: 2; grid-row: 2; width: 24px; font-size: 14px; background: seagreen;">E</div>
<div style="grid-column: 3; grid-row: 1; width: 20px; font-size: 26px; background: slateblue;">C</div>
<div style="grid-column: 3; grid-row: 2; width: 32px; font-size: 12px; background: tomato;">F</div>
</div>
<div class="scroller last" id="last">
<div style="grid-column: 1; grid-row: 1; width: 22px; font-size: 24px; background: coral;">A</div>
<div style="grid-column: 1; grid-row: 2; width: 30px; font-size: 12px; background: goldenrod;">D</div>
<div style="grid-column: 2; grid-row: 1; width: 34px; font-size: 20px; background: steelblue;">B</div>
<div style="grid-column: 2; grid-row: 2; width: 24px; font-size: 14px; background: seagreen;">E</div>
<div style="grid-column: 3; grid-row: 1; width: 20px; font-size: 26px; background: slateblue;">C</div>
<div style="grid-column: 3; grid-row: 2; width: 32px; font-size: 12px; background: tomato;">F</div>
</div>
</body>
<script>
document.getElementById('first').scrollTo(20, 0);
document.getElementById('last').scrollTo(20, 0);
</script>
</html>