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

HTML

Nguyễn Tú
Nguyễn Tú
2,333 Points

Tag <div>?

Why we should use this tag? is that used when categorizing h1, h2, and h3... I need some definition and the way to use tag. Please help!

1 Answer

Div tags are used to strukture your code and group elements together, so you can format them in css together.

You can make two div elements, put content in them and now you can float the div to get two collumns. or give the div a background color, so all the elements inside have one - if you would give every element themself a background color you would have problems with the margin between.

I hope that helps.