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 Layout Techniques Grid Layout Grid Layout Review

quiz

to create 3 equal-width content coloumns in a 12 column-row, we'll need to make each one_________ column wide.

to create 3 equal-width content columns in a 12 column-row, we'll need to make each one 4 column wide.

1 Answer

Jeff Jacobson-Swartfager
Jeff Jacobson-Swartfager
15,419 Points

Think about this as a math problem:

If you've got a row that can be divided into 12 columns and you want to create 3 equal width content columns, you can divide the width of the row (12) by the number of equal columns to create (3). That means each content column will need to be 4 columns wide (12/3 = 4).

Does that make sense?