Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Eric Kim
3,637 PointsDoes anyone knows good guideline for Jquery Masonry?
I've been having a hard time to get used to this awesome masonry design code. Does anyone knows good guideline for this? Or does treehouse have a future roadmap for this?
4 Answers

Aleksej Dix
8,087 PointsHere i've found something:
http://www.creativebloq.com/css3/get-started-jquery-masonry-8123019

Nicola Zanon
457 PointsWhat are you exactly looking for? How to implement the code in a page?

Eric Kim
3,637 PointsYes, exactly. I would like to master it!! :)

Eric Kim
3,637 PointsYes, exactly. I would like to master it!! :)

Nicola Zanon
457 PointsIt's pretty simple:
<div id="container"> <img class="item" src="path/img.jpg"> <img class="item" src="path/img.jpg"> <img class="item" src="path/img.jpg"> </div>
And jQuery
$('#container').masonry({ columnWidth: 200, itemSelector: '.item' });