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

30 lines
402 B
HTML

<html>
<head>
<style>
body {
position: relative;
}
div {
width: 100px;
height: 100px;
}
#first {
background: red;
}
#abs {
position: absolute;
left: auto;
top: 0px;
background: green;
}
</style>
</head>
<body>
<div id="first">
</div>
<div id="abs">
</div>
</body>
</html>