How would I create three columns: two side columns which are flash objects and are automaticly stretched to fill the entire y and the remaining x of the screen and a center column for the content using css? I was thinking about using javascript for this but I was hoping css had a solution. HTML CODE: <object style="width:LEFT REMAINDER OF SCREEN"></object> <div id="content" style="width:800px;">content here</div> <object style="width:RIGHT REMAINDER OF SCREEN"></object> Code (markup): Thank you.