mirror of
https://github.com/servo/servo.git
synced 2025-08-02 12:10:29 +01:00
30 lines
337 B
HTML
30 lines
337 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
position: absolute;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
#a {
|
|
top: 50px;
|
|
left: 50px;
|
|
background: purple;
|
|
}
|
|
#b {
|
|
background: steelblue;
|
|
left: 0;
|
|
top: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id=b></div>
|
|
<div id=a></div>
|
|
</body>
|
|
</html>
|
|
|