mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
30 lines
682 B
HTML
30 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>
|