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 CSS Foundations The Box Model Width, Height and Overflow Properties

need help

i don't remember the syntax of display property How to display an element as a inline element?

1 Answer

Aaron Graham
Aaron Graham
18,033 Points

If you just want a basic inline element use:

display: inline;

If you need a block element use:

display: inline-block;

Basically, if you need to set the height and/or width of the element, use inline-block. Otherwise, you should be OK with using inline.