I have a section with multiple div elements...how can I ensure that when there is horizontal scrolling in the section, the hidden divs shift to the next line?
HTML
<section id="a">
<div class="num">
<div class="num">
<div class="num">
<div class="num>
<div class="num">
<div class="num">
</section>
CSS
.num
{
position: relative;
display: table-cell;
}