servo/tests/ref/overflow_scroll.html
2014-09-08 20:21:42 -06:00

22 lines
325 B
HTML

<html>
<head>
<style>
#first {
height: 100px;
width: 100px;
overflow: scroll;
}
#second {
height: 100px;
width: 200px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="second">
</div>
</div>
</body>
</html>