Check out my jsfiddle link
Here is the markup (css in fiddle).
<div class="item">
<a href="#">
<span class="title">Short Title </span><br/>
<span class="date">June 21st, 2013</span>
</a>
</div>okay, this is good
<br/><br/>
<div class="item">
<a href="#">
<span class="title">A title which is medium </span><br/>
<span class="date">June 21st, 2013</span>
</a>
</div>still working...
<br/><br/>
<div class="item">
<a href="#">
<span class="title">A much longer title than normal to accommodate </span><br/>
<span class="date">June 21st, 2013</span>
</a>
</div>yikes, it's being pushed down
<br/><br/>
<div class="item-ideal">
<a href="#">
<span class="title">A much longer title than normal to accommodate </span><br/>
<span class="date">June 21st, 2013</span>
</a>
</div>how I want it to look in this case
Review all 4 of the.. The fourth div has a unique class that specifies ideal dimensions.
Do you have any innovative ideas to solve this? I want the block a tags to remain the same size.