부트 스트랩의 고정 바닥 글


답변:


215

뷰포트 하단에 고정되는 바닥 글을 얻으려면 다음과 같이 고정 된 위치를 지정하십시오.

footer {
    position: fixed;
    height: 100px;
    bottom: 0;
    width: 100%;
}

Bootstrap은 클래스와 함께 Navbar> Placement 섹션에이 CSS를 포함합니다 fixed-bottom. 바닥 글 요소에이 클래스를 추가하기 만하면됩니다.

<footer class="fixed-bottom">

부트 스트랩 문서 : https://getbootstrap.com/docs/4.4/utilities/position/#fixed-bottom


이것과 @ Daniel-Tero의 의견이 나를 위해 해냈습니다.
jmng

4
페이지에 스크롤이 있으면 제대로 작동하지 않는 것입니다.
Arnab

2
fixed-bottom내가 예상했던대로하지 않고 대신 static-bottom페이지 콘텐츠 높이를 존중하기 위해했습니다.
Gjaa




0

다음 ID 스타일이 적용된 div에 페이지 콘텐츠를 래핑하면됩니다.

<style>
#wrap {
   min-height: 100%;
   height: auto !important;
   height: 100%;
   margin: 0 auto -60px;
}
</style>

<div id="wrap">
    <!-- Your page content here... -->
</div>

나를 위해 일했습니다.


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.