바닥글을 맨 아래에 유지
TL;DR 코드를 보려면 맨 아래로 이동하십시오.
1- 본문 아래에 바닥글을 추가한 다음 .footer 클래스를 추가한 다음 이러한 속성을 클래스에 추가합니다.
.footer {
position: absolute;
background-color: #333;
color: white;
width: 100%;
bottom: 0;
}
설명 :
2- 이제 바닥글과 머리글을 포함한 모든 페이지 콘텐츠를 래핑하는 본문 아래에 HTML 요소를 만들고 이 요소에 클래스를 추가하고 .mainContainer라고 부르겠습니다.
.mainContainer {
position: relative;
min-height: 100vh;
}
Magic!, 이제 바닥글이 페이지 하단에 있습니다.
설명 :
최종 결과로 이제 mainContainer에 포함된 페이지 하단에 바닥글이 있습니다.
TL;DR 여기 코드가 있습니다
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<div class="mainContainer">
<div>
My content
</div>
<footer class="footer">
My footer
</footer>
</div>
</body>
</html>
귀하의 main.css에서
.mainContainer {
position: relative;
min-height: 100vh;
}
.footer {
position: absolute;
background-color: #333;
color: white;
width: 100%;
bottom: 0;
}
즐거운 코딩하세요 :)
Reference
이 문제에 관하여(바닥글을 맨 아래에 유지), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ilovesemicolons/keep-the-footer-at-the-bottom-275i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)