Files
cypress/system-tests/projects/e2e/scrollable.html
Jessica Sachs a045e4f59a chore: move server e2e tests to system-tests (#16354)
Co-authored-by: Brian Mann <brian.mann86@gmail.com>
Co-authored-by: Zach Bloomquist <git@chary.us>
Co-authored-by: Zach Bloomquist <github@chary.us>
2021-10-18 19:53:14 +00:00

37 lines
553 B
HTML

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<style>
#box {
width: 200px;
margin: 10px;
border: 1px solid black;
background-color: #eee;
}
#top {
height: 333px;
background-color: red;
}
#middle {
height: 333px;
background-color: green;
}
#bottom {
height: 334px;
background-color: blue;
}
</style>
<div id="box">
<div id="top">top</div>
<div id="middle">middle</div>
<div id="bottom">bottom</div>
</div>
</body>
</html>