blob: f99029372575a5940c677fe118ef51afff013718 [file] [log] [blame]
<!DOCTYPE html>
<html>
<!--
| Demonstrate overflow scroll.
| Results should be similar to overflow hidden.
| https://www.w3.org/TR/CSS21/visufx.html
-->
<head>
<style>
body {
font-family: Roboto;
font-size: 16px;
}
.red {
background-color: #FF0000;
}
.overflow {
width: 200px;
height: 20px;
overflow: scroll;
}
</style>
</head>
<body>
<div class="overflow">
<div class="red"> Demonstrate overflow scroll property value.</div>
<div class='red'> This line is invisible. </div>
</div>
</body>
</html>