mirror of
https://github.com/servo/servo.git
synced 2025-06-20 15:18:58 +01:00
40 lines
715 B
HTML
40 lines
715 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
}
|
|
body {
|
|
margin-top: 100px;
|
|
}
|
|
#first {
|
|
position: relative;
|
|
width: 90px;
|
|
height: 90px;
|
|
border: solid 1px;
|
|
}
|
|
#second {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
#fixed {
|
|
position: fixed;
|
|
left: 30px;
|
|
right: 30px;
|
|
width: 100px;
|
|
height: 20px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
<div id="second">
|
|
</div>
|
|
<!-- This should be at its static y position (inside #first, after #second) -->
|
|
<div id="fixed">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|