작성
·
353
1
index.html
<div class="footer-inner">
<footer>
<div class="footer-logo"></div>
<div class="copyright">
<div></div>
<div></div>
</div>
</footer>
</div>
style sheet
.footer-inner{
background-color: beige;
}
footer{
border: 1px solid green;
width: 1200px;
margin: auto;
}
footer > div {
height: 100px;
box-sizing: border-box;
float: left;
}
.footer-logo{
border: 1px solid pink;
width: 200px;
}
.copyright{
width: 1000px;
}
.copyright > div {
border: 1px solid black;
height: 50px;
}
footer-inner 부분만 먹히지 않아요... background-color를 줘도 실행이 안됩니다ㅠㅠ
답변 1
0
footer > div에 float를 주었으니까 footer에 overflow: hidden을 주아야 높이 값을 갖게 되면서 .footer-inner도 높이값을 갖게 됩니다.
다음에 질문하실 때는 이번처럼 부분 코드만 올리지 마시고 전체코드로 올려주세요.