Я хочу иметь возможность устанавливать высоту таблицы и заставлять ячейки прокручиваться по отдельности, если они больше таблицы.
Рассмотрим следующий код: (см. Его в действии здесь )
<div style="display: table; position: absolute;
width: 25%; height: 80%; min-height: 80%; max-height: 80%;
left: 0%; top: 10%; right: 75%; bottom: 10%; border: solid 1px black;">
<div style="display: table-row;">
<div style="display: table-cell; border: solid 1px blue;">
{Some dynamic text content}<br/>
This cell should shrink to fit its contents.
</div>
</div>
<div style="display: table-row;">
<div style="display: table-cell; border: solid 1px red;
overflow: scroll;">
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
This should only take up the remainder of the table's vertical space.
</div>
</div>
</div>
Если вы откроете этот код (в моем случае, в IE8), вы заметите, что вторая ячейка хорошо вписывается в таблицу, когда браузер развернут. Теоретически, когда вы сжимаете браузер (а также сокращаете таблицу), вертикальная полоса прокрутки должна появляться ВНУТРИ второй ячейки, когда таблица становится слишком маленькой, чтобы вместить весь контент. Но на самом деле таблица просто растет вертикально, за пределы, установленные атрибутом (ами) CSS height
.
Надеюсь, я адекватно объяснил этот сценарий ...
Кто-нибудь знает, как я могу заставить это работать?