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.
位置が に設定された div がありrelativeます。しかし、そのdivを画面の下部に固定したいので、スクロールしてもそこにとどまります。fixed上記のdivの内容に必要なため、位置をに変更できません。
relative
fixed
親をに設定し、position: fixed;それを一番下に貼り付けます。そうすれば、そのdiv positionプロパティを変更する必要はありません。
position: fixed;
div
position
# Example .child { position: relative; } .parent { position: fixed; bottom: 0px; left: 0px; right: 0px; }