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

JavaScript Treehouse Club - MASH MASH - CSS Changing Stuff in Your Style Sheet

How can I align my choice-buckets?

My choice-buckets are not lined up properly because some of my questions (highlight class) use up 2 lines instead of 1.

How can fix the code so that my choice-buckets line up with each other, regardless of how many lines my questions take up?

https://w.trhou.se/h73f8k9613

Thanks!

1 Answer

Steven Parker
Steven Parker
229,644 Points

There's a few ways to do this, but one easy one is to use CSS to make the heading height the same for all buckets:

h4 { height: 2em; }

thanks!

Where am i placing this code though?