mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
29 lines
682 B
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>
|