Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.scroller {
display: inline grid;
vertical-align: top;
width: 100px;
height: 100px;
overflow: auto;
border: 1px solid black;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="scroller" style="grid-template-rows: 40px 40px; grid-template-columns: 60px 60px;">
<div style="width:60px; height:30px; background:coral; direction:rtl;">A</div>
<div style="width:60px; height:30px; background:seagreen; direction:rtl;">C</div>
<div style="width:60px; height:30px; background:steelblue; direction:rtl;">B</div>
<div style="width:60px; height:30px; background:goldenrod; direction:rtl;">D</div>
</div>
<div class="scroller" style="direction: rtl; grid-template-columns: 40px 40px 40px; grid-template-rows:auto;">
<div style="width:40px; height:30px; background:coral; direction:rtl;">A</div>
<div style="width:40px; height:30px; background:steelblue; direction:rtl;">B</div>
<div style="width:40px; height:30px; background:seagreen; direction:rtl;">C</div>
</div>
<div class="scroller" style="grid-template-columns: 40px 40px 40px; grid-template-rows:auto;">
<div style="width:40px; height:30px; background:coral; direction:rtl;">A</div>
<div style="width:40px; height:30px; background:steelblue; direction:rtl;">B</div>
<div style="width:40px; height:30px; background:seagreen; direction:rtl;">C</div>
</div>
</body>
</html>