Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
It will help if you post your corresponding html as well. – Will Bickford May 30 '10 at 20:40
1  
The most specific CSS rule available will be used. So you need to decide how to reference the different elements in a very DOM-specific manner. Can you assign a class or ID to the h2 tag - or do you only have control over the containing div? – Will Bickford May 30 '10 at 20:42

2 Answers

up vote 21 down vote accepted

Try !important, like this:

.bloc h2 
{
    margin-right:0px !important;
}
share|improve this answer
thanks, now it works – Amirouche Douda May 31 '10 at 20:38

You could try this :

#content .bloc h2
{
    margin-right: 0;
}

I'm not sure I understood your question perfectly well, espescially the last sentence...

share|improve this answer
thx, this also works but I prefered one above. – Amirouche Douda May 31 '10 at 20:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.