VansFannel
VansFannel

Reputation: 45911

Avoid CSS inheritance

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!

Upvotes: 3

Views: 2676

Answers (1)

i_am_jorf
i_am_jorf

Reputation: 54600

Set vertical-align: baseline.

Upvotes: 13

Related Questions