In CSS, how do I get a left-side fixed-width column with a right-side table that uses the rest of the width?
<div style=”width: 200px;background-color: #FFFFCC; float: left;”> Left column </div> <div style=”margin-left: 200px; background-color: #CCFFFF”> Right column </div> That should do it (obviously implementation will vary based on where it is in the page, but I think that’s the concept you’re looking for).