I need the Invoice text to be left aligned and the Invoice # to be right aligned. I want them both to also be bottom aligned otherwise it looks odd with the an underline below. I have the following html:
<div style="height:75px; line-height:75px;">
    <div class="invoiceTitle">Invoice</div>
    <div class="invoiceNumber"># 12</div>
</div>
with the following CSS:
.invoiceTitle
{
    float: left;
    font-size: 36px;
    vertical-align: bottom;
}
.invoiceNumber
{
    float: right;
    font-size: 16px;
    vertical-align: bottom;
}
I can't figure out how to get them both aligned vertically together. There's extra code in there to show things I've tried unsuccessfully.
 
     
    