blob: e7a21315c58f047e5fedc721ca4e253bcd44dd6a [file] [log] [blame]
<!DOCTYPE html>
<html>
<!--
| Demonstrate overflow visible.
| https://www.w3.org/TR/CSS21/visufx.html
-->
<head>
<style>
.red {
background-color: #FF0000;
}
.overflow {
width: 200px;
height: 20px;
overflow: visible;
}
</style>
</head>
<body>
<div class="overflow">
<div class="red"> Demonstrate overflow visible property value.</div>
<div class='red'> This line is visible. </div>
</div>
</body>
</html>