Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は広範囲に検索しましたが、私の特定の質問に対する答えを見つけることができないようです:私は幅980pxのdivを持っており、下にスクロールしてもページの上部に留まるようにposition:fixedです。私の問題は、divを中央揃えにする方法を理解できず、position:relativeではなくposition:fixedである間も中央に配置することができないことです。
何かsiggestions、または私は明白な何かを逃していますか?
この CSS スタイルを適用できます。
div#id { position:fixed; top:0; /* or whatever you need */ left:50%; width:980px; margin-left:-490px; /* half the lenght of the element */ }
GionaF の正解に続いて、ここに実例があります。
http://jsfiddle.net/Ubp49/