I want the right div to have a fixed width and the left div to take up everything else inside the box.
<div id='outer' style='width:100%'>
<div id='inner1'></div>
<div id='inner2'></div>
</div>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There may be a better way of doing this, but this may achieve what you’re trying to accomplish:
Combined with
So, while this doesn’t actually make the one on the left take up the rest of the space, it won’t encroach upon the right column.
Associated jsFiddle: