๐ฉ๐ป๐ปSTUDY/CSS
[CSS] height: 100% VS height: auto
jmjm
2020. 7. 2. 19:32
[CSS] height: 100% / height: auto;
height: 100%;
- ๋ถ๋ชจ ์ปจํ ์ด๋์ ๋์ด๋ฅผ 100% ๋ก ์ค์ ํ๋ค. (๋ถ๋ชจ๋์ด ์ํฅ)
<div style="height: 50px">
<div id="innerDiv" style="height: 100%"></div>
</div>
#innerDiv
๋height: 50px
height: auto;
- ๋์ด๋ ์์์ ๋์ด์ ๋ฐ๋ผ ๋ฌ๋ผ์ง๋ค. (์์๋์ด ์ํฅ)
<div style="height: 50px">
<div id="innerDiv" style="height: auto">
<div id="evenInner" style="height: 10px"></div>
</div>
</div>
#innerDiv
๋height: 10px
Reference
https://stackoverflow.com/questions/15943009/difference-between-css-height-100-vs-height-auto