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 have the following CSS:

 #form1,#form2,#form3,#form5,#form6,#form7,#form8 div{
    padding:10px;
    border:1px solid blue;
    background-color: grey;
    font-family:"lucida grande",tahoma,sans-serif;
  }

For some reason, the last id does not get the style. (ie #form8 does not get the style).

If I switch the css like this (Without changing any html code):

#form1,#form2,#form3,#form5,#form8,#form6,#form7 div{

Now #form7 does not have the style.

Did I code the structure wrongly please? Its very strange

share|improve this question
Doesn't work because you select div in #form8. Try removing div. – Enve Jan 20 at 19:04

3 Answers

up vote 2 down vote accepted

Seems you are targeting div#form1, div#form2 ... and so on... You can skip writing div for the selector. Try this

#form1, #form2, #form3, #form5, #form6, #form7, #form8 {
    padding:10px;
    border:1px solid blue;
    background-color: grey;
    font-family:"lucida grande",tahoma,sans-serif;
}


Or even better ... give all of them a class name like <form class="myform" id="whatever"></form> and use:

.myform {
    padding:10px;
    border:1px solid blue;
    background-color: grey;
    font-family:"lucida grande",tahoma,sans-serif;
}
share|improve this answer
thanks it works like that =) – Goaler444 Jan 20 at 19:08

It's probably an HTML markup issue. Can you provide it?

A wild guess is that your code looks like:

<div id="form8">
...
</div>

And the last part of your CSS selector (#form8 div) actually targets a markup like:

<div id="form8">
  <div>
  ...
  </div>
</div>

Here's a meta advice: if your selectors list is so long and apparently targets the same type of element (a form), use a class!

.form{
padding:10px;
border:1px solid blue;
background-color: grey;
font-family:"lucida grande",tahoma,sans-serif;
}
share|improve this answer
hmm good idea, dont know why I wasnt using a class in the first place. Thanks – Goaler444 Jan 20 at 19:09

You should just use #form1,#form2,#form3,#form5,#form6,#form7,#form8

#foem8 div refers to the all child divs of the element with this is #foem8

share|improve this answer

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.