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 부분의 코드 작성이 끝났다.
Last updated
Was this helpful?