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

24 lines
377 B
HTML

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