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

24 lines
366 B
HTML

<html>
<head>
<style>
html, body {
margin: 0px;
}
.box {
width: 100px;
height: 100px;
}
#first {
background: green;
}
#normal {
background: blue;
}
</style>
</head>
<body>
<div id="first" class="box">
</div>
<div id="normal" class="box"></div>
</body>
</html>