I am trying to place two divs inside another. The inner divs are floated, with one having a "width: auto;" and the other needing to fill the remaining space.
I have searched for examples, but they all involve at least one fixed width element, which is not what I am looking for in this case.
The structure should look like this:
<div id="bigboss">
<div id="child1"></div>
<div id="child2"></div>
</div>
"bigboss" has a "width: 100%", "child1" has "width: auto;", and I need Child 2 to fill the remaining space.