Inline
Generates an inline box. Content is arranged in lines, and will flow with surrounding inline elements.
Ignores CSS width and height.
Ignores CSS top / bottom margins and padding.
Width and height are determined by content.
Inline-block
Generates an inline-level block container. Content is arranged in lines, but can have the characteristics of a block box.
Container will expand to the full width of the parent before generating a line-break.
Block
Generates a block box. Content is stacked.
Fills the entire width of its parent element.
Creates a line-break before and after the element.