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 assign a div 2 display properties, I'm not sure what the correct syntax is...

#div2 {
  display:none;inline-block;
 }

What is the correct way to do this?

UPDATE:

#div2 {
  display:none;
 }

$(function() {
  $("#div1").mouseover(function() {
    $("#div2").css('display', 'inline-block');
  }).mouseout(function(){
    $("#div2").css('display', 'none');
  });
});
share|improve this question
there is no way to do this, the last will override the first. What do you want to do? – Sotiris Feb 12 '11 at 21:50
2  
this is like i want to be visible and invisible at the same time. – Sinan Yasar Feb 12 '11 at 21:52
the div2 should be hidden, but when the user hovers over a div1, div2 should show right next to div1.. – thedeepfield Feb 12 '11 at 21:53

2 Answers

up vote 1 down vote accepted

You can only set one value at a time to the display property. In this case, the display: none will cause the div to not be rendered at all, so the inline-block would be totally irrelevant here.

I assume you want to somehow toggle the visibility using javascript. This requires you to toggle the display property between none and inline-block. As I said, you can always just have one value here.

share|improve this answer
I'm using jquery, I can toggle between none and inline-block~ thanks~~ – thedeepfield Feb 12 '11 at 22:22

You simply can't do this as Sotiris said. Just like you can't set two different background-color.

Try to use jQuery (or native js) for this.

http://api.jquery.com/mouseover/

http://api.jquery.com/addClass/

share|improve this answer
thanks for the link~ I've updated my code, but this doesn't seem to work.. what am I missing? – thedeepfield Feb 12 '11 at 22:42

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.