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

what are the industry standards for positioning?

What is the standard used framework(bootstrap,etc...) used when it comes to positioning content on a webpage?

5 Answers

Cody, I'd recommend checking out CSS Layout Techniques on Treehouse.

This is a good recommendation, along with the CSS Foundations course as well.

Definitely responsive. Bootstrap is highly popular, though, so is Foundation. Both have things the other doesn't. Maybe the question isn't what the standard is, but what you can do with it. :smiley:

But I do really like UIkit as of late.

Cody,

I believe you're asking what's the main way to lay out content. I'd have to say that most frameworks and grid systems are using floats as of today. Someone correct me if they feel differently.

-Luke

thanks for the answers guys. And yes, I am wondering as a developer, lets say I'm building a site and im starting to position the HTML on the pages, is using floats, or using a framework considered optimal?

Most of the popular frameworks of today, like Bootstrap 3 and Foundation 5, use a combination of html class markup and css properties like floats to lay out the site. These are usually called a "grid" system.

Grid systems are combined of rows, columns and gutters. The rows hold the columns and the gutters separate columns from one another. Typically all columns except the last column will use the css property float: left; and the last column will be float: right;

-Luke