blob: 86c7178fecb4e9fe7c01817bcd711a99c96709be [file] [log] [blame]
<!DOCTYPE html>
<style>
#fixed {
position: absolute;
left: 300px;
top: 200px;
width: 100px;
height: 100px;
background-color: green;
}
#fixed-child {
position: absolute;
left: 25px;
top: 25px;
width: 50px;
height: 50px;
background-color: blue;
}
</style>
<div id="fixed">
<div id="fixed-child"></div>
</div>