I’m looking for a way to create a CSS layout where the left column is fluid and the right column is fixed using the exact markup below. I don’t think it is possible. Am I wrong?
<div class="wrapper">
<div class="left">Fluid Column</div>
<div class="right">Fixed Column</div>
</div>
Yep. Try this:
CSS:
Note: Remove
wrapperif you want the width to be 100%.