Here's a simplified site layout:
#left_column { width: 200px; height: 100%; } <div id="left_column"> </div> <div id="right_column"> /* A bunch of 100px width photos that are being floated */ </div>
So, as the code suggests, I have a left column and a right column. The left column should be 200 pixels wide and go to the bottom of the screen. The right column should occupy the rest of the width and contain a bunch of floating images (like what Google image search looks like). How can I do this using CSS and HTML? I would prefer not to use JavaScript.
source share