Okay, I got it. What happens is the top of your divs line up properly, but the difference in font-size pulls the baseline of the first element lower than the other (which is normal). You need to compensate using margin-top (for the first line) and line-height (if there are other lines).
On Wed, Aug 19, 2009 at 7:44 PM, Slay <[email protected]> wrote: > #btown { > color: #000; > font-size: 1.835em; > } > > #btown2 { > color: #444; > font-size: 1.335em; margin-top: 0.5em; /* Add this rule to push the baseline by the same amount as #btow */ > } > -- Goulven Champenois --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
