mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
30 lines
402 B
HTML
30 lines
402 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
position: relative;
|
|
}
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#first {
|
|
background: red;
|
|
}
|
|
#abs {
|
|
position: absolute;
|
|
left: auto;
|
|
top: 0px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
|
|
</div>
|
|
<div id="abs">
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|