When faced with this particular set of HTML:
<div class="wrapper">
<span class="left"></span>
<span class="middle"></span>
<span class="right"></span>
</div>
The .left
and .right
elements have fixed heights, while the .middle
element's height will vary.
In order to achieve a layout like this:
-!!-
instead of the default _!!_
.
What method could be used to accomplish this?