私はこれに似たページ構造を持っています:
CSS :
html,body{
height: 100%;
border: 1px solid;
box-sizing: border-box;
}
#pagina{
height: 100%;
}
#list{
height: 100%;
}
.persona{
border: 1px solid;
height: 40%;
}
HTML:
<div id=pagina>
<div id=list>
<div class="persona">Prova</div>
<div class="persona">Prova</div>
<div class="persona">Prova</div>
</div>
ページの高さを 100% にして、コンテンツに適応させたいと思います。
手伝って頂けますか?