I want to create a layout with three <div>
s, whereby my second (middle) div has a fixed width (e.g. 300px). My other two <div>
s, should equally fill the rest of the parent element.
I'd love to solve it with some kind of percentages for the left and right <div>
s, so it is horizontally scaleable.
<div>
<div class="rest"></div>
<div class="center"></div>
<div class="rest"></div>
</div>