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 Selectors Selectors - Beyond the Basics Child, Adjacent, and General Sibling Combinators

Kailash Seshadri
Kailash Seshadri
3,087 Points

Adjacent Sibling Combinators

I don't understand how the adjacent sibling combinators work in the code below:

.btn + .btn {
  margin-left: 20px;
}

why does the reset button get a left margin but not the submit button?

Thanks!!

1 Answer

Steven Parker
Steven Parker
229,657 Points

While it may be called an adjacent sibling selector, it's actually a following sibling selector. So ".btn + .btn" will select an element with class btn that immediately follows another element with the same class.

If you have two buttons of this class, the second one will be selected but the first will not be.