고정 바닥글은 웹페이지의 바닥글 부분이 항상 브라우저 창 하단에 있다는 의미입니다.
웹페이지의 콘텐츠가 브라우저에 표시되는 높이를 초과할 만큼 길면 바닥글이 콘텐츠와 함께 웹페이지 하단으로 푸시됩니다.
그러나 웹페이지의 콘텐츠 길이가 충분하지 않으면 바닥글이 하단에 배치되고 브라우저 창 하단에 그대로 유지됩니다.
<a href="http://www.php.cn/wiki/935.html" target="_blank">margin-bottom</a>
을 음수로 설정<p class="wrapper"> <!-- content --> <p class="push"></p> </p> <p class="footer">footer</p>rrree
이 방법을 사용하려면 컨테이너에 추가 자리 표시자 요소(p.push
)가 있어야 합니다.
p.wrapper
의 margin-bottom
은 p.footer
의 -height
값과 동일해야 합니다. 이는 음수 height
입니다.
<a href="http://www.php.cn/wiki/933.html" target="_blank">margin-top</a>
을 음수로 설정콘텐츠 외부에 상위 요소를 추가하고 콘텐츠 부분의 <a href="http://www.php.cn/wiki/951.html" target="_blank">padding-bottom</a>
🎜>은 바닥글의 height
과 같습니다.
html, body { margin: 0; padding: 0; height: 100%; } .wrapper { min-height: 100%; margin-bottom: -50px; /* 等于footer的高度 */ } .footer, .push { height: 50px; }
<p class="content"> <p class="content-inside"> <!-- content --> </p> </p> <p class="footer">footer</p>
calc()
을 사용하여 콘텐츠 높이 설정html, body { margin: 0; padding: 0; height: 100%; } .content { min-height: 100%; } .content-inside { padding: 20px; padding-bottom: 50px; } .footer { height: 50px; margin-top: -50px; }
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
여기에서는 p.content
사이에 20px가 있다고 가정합니다. p.footer
간격이 70px=50px+20px
위 세 가지 방법의 경우 바닥글 높이가 고정됩니다. 바닥글 내용이 너무 많으면 레이아웃이 깨질 수 있습니다.
.content { min-height: calc(100vh - 70px); } .footer { height: 50px; }
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
html { height: 100%; } body { min-height: 100%; display: flex; flex-direction: column; } .content { flex: 1; }
<p class="content"> <!-- content --> </p> <p class="footer">footer</p>
위 내용은 CSS로 바닥글 배치를 구현하는 5가지 방법 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!