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.
jQueryを使用してdivの位置を修正する方法を見つけました。
これが例です。
cssを使用して同じ効果を達成できますか?
UPD:私はこの解決策を見てきました。固定要素がウィンドウに収まらない場合は、水平ウィンドウのスクロールバーも表示したい。
を使用すると、クールなウィズバングやアニメーションなしで同じ効果を得ることができますposition: fixed。固定された要素は、スクロールするだけです。
position: fixed
コンテンツがウィンドウに収まらない場合の水平スクロールバーについては、固定要素をwidth: 100%定義するだけです。overflow-x: scroll
width: 100%
overflow-x: scroll