tenfourfox/layout/reftests/margin-collapsing/block-abs-pos-2-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
335 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#abs-pos {
position: absolute;
top: 20px; left: 20px;
width: 200px;
padding: 40px 0;
background-color: lightgreen;
}
#in-flow-child {
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<div id="abs-pos">
<div id="in-flow-child"></div>
</div>
</body>
</html>