How to override a CSS class within a content div
Posted
by amirouche
on Stack Overflow
See other posts from Stack Overflow
or by amirouche
Published on 2010-05-30T20:32:13Z
Indexed on
2010/05/30
20:42 UTC
Read the original article
Hit count: 235
I want to reimplement the property margin-right in a bloc whitin a content.
this is the content id css:
#content h2 {
margin-right:2px;
}
this is the bloc class css:
.bloc h2 {
margin-right:0px;
}
I want the margin-right bloc works not one the content
© Stack Overflow or respective owner