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.
下にスクロールしても固定されるサイドバーを追加したいと考えています。このサイトには、電子メールのオプトイン フォームの例があります。
ただし、その例とは異なり、サイドバーをラッパーの右端に対して左揃えにする必要があります。
今、私はちょうど使用しています
.sidebar { position: absolute; left: 894px; top: 188px; }
配置しますが、常にラッパーの右端にあるとは限りません。
何か案は?
使用する:
.wrapper { width:100px; position: fixed; left:0; top: 188px; } .sidebar { width:50px; float:left; margin-left:50px; }
これは、ラッパーが画面の左側にくっついており、サイドバーがラッパーの右側に接している例です。