- Where Developers Learn, Share, & Build Careers
Is pinline style layout / stacking of items on a page with CSS possible?
I think there might be something like this in CSS3 which can do this type of layout with columns.
I have already read a tutorial, but it requires stacking javascript and full position.
You can use the CSS3 column. It will pile up stacked objects. div.pinterest {width: 400px; Column-count: 4; Column-Difference: 0; } Div.pinterest & gt; Div {Display: Inline-Block; Vertical-alignment: top; Width: 100px; }
Comments
Post a Comment