Fixed right-sidebar (part of fixed positioning)

Code

<!-- IE in quirks mode -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<title>Fixed right-sidebar</title>
<style type="text/css">
 body{
  margin:0;
  padding:0 <length> 0 0;
 }
 div#right-sidebar{
  position:absolute;
  top:0;
  right:0;
  width:<length>;
  height:100%;
 }
 @media screen{
  body>div#right-sidebar{
   position:fixed;
  }
 }
 * html body{
  overflow:hidden;
 } 
 * html div#content{
  height:100%;
  overflow:auto;
 }
</style>
<div id="right-sidebar"> right-sidebar </div>
<div id="content"> content </div>

Related examples

One or two columns

Special examples

Note

This example is part of a weblog entry and is made by Anne van Kesteren and Arthur Steiner.

A lot more combinations are possible, of course, but it would become impossible to create and list them all. After you understand the theory, you will be fine.