Here is the code snippet I am currently working with:
<section class="table">
<div class="table-row">
<div class="table-cell"></div>
<div class="table-cell"></div>
<div class="table-cell"></div>
</div>
<div class="table-row">
<div class="table-cell"></div>
<div class="table-cell"></div>
<div class="table-cell"></div>
</div>
</section>
I'm looking to make the <section>
element a fixed height so that scrolling will be required to view additional rows. How can I achieve this?