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 Basics (2014) Basic Selectors ID Selectors

Pitrov Secondary
Pitrov Secondary
5,121 Points

Can I use two id-s in one tag?

Can I use two id-s on one tag?

2 Answers

Steven Parker
Steven Parker
229,732 Points

By "tag", I expect you are asking about the HTML. In that case, no, an element can have only one ID; and that ID must be unique on the page. On the other hand, an element can have multiple class names, and those work much the same as ID's for CSS selectors.

But if you meant to ask if a CSS rule can apply to more than one tag selector — then yes, the selectors can be listed separated by commas.

HIDAYATULLAH ARGHANDABI
HIDAYATULLAH ARGHANDABI
21,058 Points

Logically you can use on id selector to apply all styling attributes to it.