Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Avoid CSS inheritance

Tags:

css

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!

like image 354
VansFannel Avatar asked Apr 09 '26 09:04

VansFannel


1 Answers

Set vertical-align: baseline.

like image 99
i_am_jorf Avatar answered Apr 11 '26 00:04

i_am_jorf