blob: 10867cf275536c262f362166d4365661d667416e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#abs {
position: absolute;
left: 0px;
top: 0px;
background: silver;
width: 100px;
height: 50%;
}
#fixed {
position: fixed;
right: 0px;
top: 0px;
background: red;
width: 100px;
height: 50%;
}
#spacer {
height: 1000px;
}
</style>
<head>
<body>
<div id="abs"></div>
<div id="fixed"></div>
<div id="spacer"></div>
</body>
</html>