Is there a way to make the right column collapse under the left one instead of spilling over when resizing the browser? I have a container with a left-column and a right-column. Here is my current setup:
<div class = "container">
<div class = "left-column"> A bunch of content </div>
<div class = "right-column"> A bunch of more content </div>
</div>
.container { width: 100%; }
.left-column { width: 50%; }
.right-column { width: 50%; }