Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i cant get a smaller (superscript) inline element to align with another inline element.

Basically the em element (that contains the words 'USD') should align with the inline text (that contains the words ABC), so both the tops of the words are on the same line.

For me with my code below, the words USD are half way up even though i set the line height to 35px;

Any ideas what i am doing wrong?

Thanks,

Chris

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.plan-types-pricing
{
    font-size: 35px;
    line-height: 35px;
}

.plan-types-pricing strong
{
    display: block;
}

.plan-types-pricing em
{
    font-size:12px;
    vertical-align: top;
    line-height: 35px;
}

.plan-types-pricing small
{
    font-size: 12px;
    vertical-align: baseline;
}

</style>
</head>
<body>
    <span class="plan-types-pricing">
        <strong>Starting at</strong>
        <em>USD</em>
        ABC
        <small>/month</small>
    </span>
</body>
</html>
share|improve this question
can you jsfiddle this please – Ryan Murphy May 3 '12 at 10:51
try line-height:50px; in em ... – lakshmi priya May 3 '12 at 10:53

1 Answer

up vote 1 down vote accepted

The line-height of .plan-types-pricing em should be desired height - font size (35 - 12 = 23) So set the line-height of em to 23px.

.plan-types-pricing em
{
    line-height: 23px;
    font-size: 12px;
    vertical-align: top;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.