servo/tests/ref/vertical_align_sub_ref.html

29 lines
682 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
margin: 0;
}
.text {
position: absolute;
background-color: blue;
top: 100px;
width: 100px;
height: 100px;
}
.aligned {
position: absolute;
background-color: red;
top: 136px;
left: 100px;
width: 80px;
height: 80px;
}
</style>
</head>
<body>
<div class="text"></div>
<div class="aligned"></div>
</body>
</html>