반응형
Q>
<div class="wrap">
<div class="header">header</div>
<div class="container">
<div class="content">content</div>
</div>
<div class="footer">footer</div></div>
위와 같은 HTML로 콘텐츠의 내용의 길이에 상관없이 header를 상단에 고정되는 레이아웃을 구성하려고 할 때 필수적인 css 구성 중에 맞는 것은?
- .header {position: fixed; top: 0;}
- .header {position: fixed; bottom: 0;}
- .header {position: absolute; bottom: 0;}
- .header {position: relative; top: 0;}
- .header {position: fixed; top: 0; bottom:0;}
A>
.header {position: fixed; top: 0;}
반응형
'Python_WEB > HTML' 카테고리의 다른 글
[부스트코스]2단 메뉴 퀴즈 (0) | 2021.03.14 |
---|---|
[부스트코스]1단 메뉴 퀴즈 (0) | 2021.03.14 |
[부스트코스]다단 레이아웃 제작 퀴즈 (0) | 2021.03.14 |
[부스트코스]1단 레이아웃 퀴즈 (0) | 2021.03.10 |
[부스트코스]float 해제 퀴즈 (0) | 2021.03.10 |