mirror of
https://github.com/servo/servo
synced 2026-05-14 02:47:14 +02:00
29 lines
334 B
HTML
29 lines
334 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
html, body {
|
|
margin: 0; padding: 0;
|
|
}
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
#a {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: red;
|
|
}
|
|
|
|
#b {
|
|
position: relative;
|
|
background: green;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div id="a"></div>
|
|
<div id="b"></div>
|
|
</body>
|
|
|