Web Practice (2) - 홈페이지 레이아웃 구성 심화
  • Introduction
  • 1. 먼저 만들어보기
  • 2. 시작하기 전
    • CSS Attribute
  • 3. Header 구성
  • 4. Container 구성
    • Container 틀 코드 작성
    • Container 내부 코드 작성
  • 5. Footer 구성
  • 결과물
Powered by GitBook
On this page

Was this helpful?

5. Footer 구성

Header 구성과 다른 점이 없다.

Footer 부분의 CSS 속성값은 Width: 100%, Height: 70px, Background-color: lightsalmon이다.

~/Web-Practice/style.css

...

.footer {
    width: 100%;
    height: 70px;
    background-color: lightsalmon;
}

Footer 부분의 코드 작성이 끝났다.

PreviousContainer 내부 코드 작성Next결과물

Last updated 6 years ago

Was this helpful?