Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS How to Make a Website Styling Web Pages and Navigation Build Navigation with Unordered Lists

what is the difference between block and inline?

I didn't understand this part when talked about the display property! thanks :)

3 Answers

Thanks Emma :)

chrishj
chrishj
1,753 Points

A block element is an element that takes up the full width available, and will break other objects before and after it, like a DIV. An in-line element are things like text that will fill up a line until there is no more space and will then "word wrap" in essence, like text, anchors and spans.

Thanks chrishj :)

Inline elements will always appear to continue on the same line as their neighbouring elements (think span, a, img ...) . While block element will always start on a new line and take as much horizontal space as they can (think div, section...)

Thanks nicolas :)