Overwrite CSS: .container > * -


i'm trying overwrite line-height has been set in theme using:

.container > *{font:normal 22px/28px sans-serif;} 

the div targeting nested inside of .container try doesn't work!

any suggestions?

assuming div want style has class called myclass, this:

.container .myclass {   line-height: x px; /* whatever need */ } 

this override original selector because more specific

here's demo


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -