tags:

views:

573

answers:

1

Hello!

I have this CSS style:

span
{
    font-family: Book Antiqua;
    clear: right;
    vertical-align: top;
}

I want to remove vertical-align on span inside a div called divDetail. In other words, I want this style on any span inside divDetail:

#divDetail span
{
    font-family: Book Antiqua;
    clear: right;
}

How can I do that? How can I remove vertical-align style?

Thank you!

+10  A: 

Set vertical-align: baseline, which is the default.

jeffamaphone