고정 페이지 만들기: 고정된 페이지

CSS를 사용하여 고정/粘性 페이지를 만들어 보세요.

직접 테스트해 보세요

固定 페이지 만들기

<style>
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}
</style>
<div class="footer">
  <p>Footer</p>
</div>

직접 테스트해 보세요

관련 페이지

강의:CSS 정위치