wrapper
position:static;
margin:20px auto;
width:400px;
A
position:fixed;
top:0;
left:0;
B
position:absolute;
top:0;
right:0;
C
position:fixed;
margin-top:0;
margin-left:0
要素を基準とするfixed要素はmarginプロパティを使う。top,leftなどを使うとwindowが基準となる。(?) Aがそれ。