Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
.container {
width: 500px;
outline: 1px solid black;
}
.grid-container {
display: grid;
outline: 1px solid green;
}
.grid-item {
width: 300px;
outline: 1px solid magenta;
}
.content {
overflow-x: scroll;
white-space: pre;
}
.sibling {
width: 100px;
height: 100px;
border: 4px solid blue;
}
</style>
</head>
<body>
<div class=container>
<div class=grid-container>
<div class=grid-item>
<div class=content>PASS if always-on scrollbar does not overlap the blue box below</div>
</div>
</div>
<div class=sibling></div>
</div>
</body>
</html>