OK given this markup:
<div class="wrapper">
<span class="left"></span>
<span class="middle"></span>
<span class="right"></span>
</div>
.left and .right are fixed heights, but .middle will be varying height.
So i need it to look like this:
-!!- rather than _!!_ which it is by default.
How can this be achieved?
You can extend the answer you were given yesterday.
Basically, just add
vertical-align: middleto the elements withdisplay: inline-block.See: http://jsfiddle.net/thirtydot/qk4dW/1/ – or here for identical code but with the middle element tallest.