blob: cc2a3f2dd2ce616002d88ecfc09b931957cabefa [file] [log] [blame]
<!DOCTYPE html>
<html>
<!--
| Demonstrate overflow auto.
| 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: auto;
}
</style>
</head>
<body>
<div class="overflow">
<div class="red"> Demonstrate overflow auto property value.</div>
<div class='red'> This line is invisible. </div>
</div>
</body>
</html>