mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
37 lines
912 B
HTML
37 lines
912 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
.red {
|
|
background-color: red;
|
|
position: absolute;
|
|
top: 100px;
|
|
width: 20px;
|
|
height: 80px;
|
|
}
|
|
.green {
|
|
background-color: green;
|
|
position: absolute;
|
|
top: 180px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
.yellow {
|
|
background-color: yellow;
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 100px;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="red"></div>
|
|
<div class="green"></div>
|
|
<div class="yellow"></div>
|
|
</body>
|
|
</html>
|