Вот почему:
Проблема в том, что внутри <td>
есть два элемента типа блока. Таким образом, второй блок <details>
, высота которого установлена на 100%, будет занимать 100% высоты <td>
, но есть первый блок <details>
, который принимает высоту переполнения.
Здесь исправлено: с использованием flexbox
<!DOCTYPE html>
<html>
<head>
<style>
* {
border: 1px dotted blue;
vertical-align: top;
}
.infopanel{
height: 80vh;
max-height: 80vh;
width: 20vw;
display: flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-start; /*this will keep details at the top*/
/*justify-content:flex-end;*/ /*this will close details to the bottom*/
}
.infopanel>details{
width:100%;
}
.infopanel>.top-detail{
overflow:visible;
max-height: 100%;
}
.infopanel>.bot-detail{
overflow:auto;
}
</style>
</head>
<body>
<div class="infopanel">
<details open class="top-detail">
<summary>Contents here will change in height</summary>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</details>
<details id="FillMe" class="bot-detail" open>
<summary> Last element does not show</summary>
<script>
var html = [];
for(var i = 0;i < 100; i++) html.push("<br> data "+ i);
document.getElementById("FillMe").innerHTML += html.join('');
</script>
<br>
Last line of data
</details>
</div>
</body>
</html>