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.

As the title says, I want to know exactly the difference between the inline and inline-block values of CSS display.

share|improve this question
2  
see my answer also stackoverflow.com/questions/8969381/… – Navin Rauniyar Apr 25 at 6:18

3 Answers

up vote 23 down vote accepted

The specification defines it:

inline-block
This value causes an element to generate an inline-level block container. The inside of an inline-block is formatted as a block box, and the element itself is formatted as an atomic inline-level box. inline
This value causes an element to generate one or more inline boxes.

Section 9 has a fair bit of information about the various kinds of boxes and how the visual formatting model works.

share|improve this answer
thanks for the response! – Logesh Paul Jan 24 '12 at 11:04
Would the downvoter care to share some useful feedback? – T.J. Crowder Jan 29 at 13:15
4  
I'm not the downvoter, but this doesn't really explain things to me (who is still learning CSS really). An explanation for me would also require you to explain when inline and block mean in this context, and what changes/differences it makes. I read your answer and still have no idea what inline, block or inline-block do. The visual answer is abundantly clear though. – Hamish Downer Apr 19 at 14:40
@HamishDowner: Indeed, that answer is fantastic. I hadn't seen it before (as it was eleven months after the question was asked), +1. – T.J. Crowder Apr 19 at 15:54

A visual answer

Imagine a <span> element inside a <div>. If you give the <span> element a height of 100px and a red border for example, it will look like this with

display: inline

display: inline

display: inline-block

display: inline-block

display: block

enter image description here

Code: http://jsfiddle.net/Mta2b/

share|improve this answer
11  
+1 - best answer IMHO. – louism Dec 27 '12 at 1:39
Well explained! – Logesh Paul Dec 27 '12 at 5:51
1  
+1 Fantastic answer. – T.J. Crowder Apr 19 at 15:55

display: inline; is a display for in a sentence. For instance, if you have a paragraph and want to highlight a single word you use:

<p>Pellentesque habitant morbi <em>tristique</em> senectus et netus et malesuada fames ac turpis egestas.</p>

<em> has a display: inline; by default, because this tag is always used for in a sentence. The <p> has a display: block; by default, because it's not a sentence or in a sentence but it is a block of sentences.

An element with display: inline; cannot have a height or a width or a margin. And an element with display: block; can have a width, height or margin. If you want to add a height to the <em> element you need to set this element to display: inline-block;. Now you can add a height to the element and every other block style, but it is placed in a sentence.

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.