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 trialMark Collins
2,955 PointsColumns for Copy
Where can I find, or what is the code to make copy flow into columns rather than stretch across the page, please?
2 Answers
Steven Parker
231,072 PointsThere are several methods for creating layout in columns. One that can be done purely in HTML is by using the <table>
element with its associated sub-elements. A good single-page introduction can be found at W3Schools, and there's also the HTML Tables course right here.
But more modern methods make use of CSS, and they are covered in several of the Treehouse courses, including CSS - Beyond the Basics.
Mark Collins
2,955 PointsHi Steven Thanks! I've not yet looked at beyond the basics, so will do that as well as check out W3.