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.

Possible Duplicate:
What is the difference between display: inline and display: inline-block?

In the CSS markup language, display tag has values of inline and inline-block... Can anyone explain in detail the difference between inline and inline-block?

I searched everywhere, the most detailed explanation tells me inline-block placed as inline, but behave as a block. But it does not explained what exactly what "behave as a block" mean. Is it any special feature?

An example would be even better answer. Thanks.

share|improve this question
5  
CSS is not a markup language, and display is not a tag. – BoltClock Feb 8 '12 at 8:24
cek here.. display in CSS Versions – Fredy Feb 8 '12 at 8:30
display: inline-block will render just fine in Firefox, Safari, Google Chrome and IE 8. However, for older versions of Internet Explorer, we need to trigger hasLayout and also use a little hack to set the display to inline. (See bit.ly/16cxMXj for an example.) – Ace Apr 29 at 14:49

marked as duplicate by BoltClock Feb 8 '12 at 8:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 6 down vote accepted

From W3Schools:

  • An inline element has no line break before or after it, and it tolerates HTML elements next to it.

  • A block element has some whitespace above and below it and does not tolerate any HTML elements next to it.

  • An inline-block element is placed as an inline element (on the same line as adjacent content), but it behaves as a block element.

You can visually see it's difference near the bottom of this page.

share|improve this answer
5  
Strange use of the word "tolerate" there, but then again it's W3Schools... – BoltClock Feb 8 '12 at 8:31
2  
I think you did not read my question completely. I mentioned in the question I know it behaves as a block element. I am asking what does "behave as a block element" means. – user926958 Feb 8 '12 at 8:57
@user926958 It means that it has some whitespace above and below it and does not tolerate any HTML elements next to it.. – Oldskool Feb 8 '12 at 9:04
2  
If you actually try it, it actually allow elements next to it. – user926958 Feb 8 '12 at 9:16
1  
i am new to html. block element does not tolerate any elements next to it. But if we give next element "inline", then it will come next to our block element. So, block element tolerating or not has no meaning. It's upto the next element whether it wants to come in line with previous element or not.??? – vivek.m Feb 8 at 17:26
show 1 more comment

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