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 How to Make a Website CSS: Cascading Style Sheets Use ID Selectors

Onur ARSLAN
Onur ARSLAN
5,130 Points

<div>

do i need <div> only to group my code? In this example <div id="wrapper"> contains section and footer.

If i dont want to use <div>, can i style my code with using section and footer? Like;

Instead of,

wrapper {

} Can i use? ;

section { } footer { }

Thank you.

2 Answers

Steven Parker
Steven Parker
230,995 Points

How you group your code for styling purposes is a matter of choice. While there are some conventions that might help keep things easy to manage, you can pick elements to style as you see fit.

But while learning it might help to stick closely to the examples given until you get an understanding of why some choices might be better than others.

You can do this

section, footer { (whatever you want to use.); }