Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The definition I found for the blueprint css class called .column says:

.column Use with .span-x classes to create combinations of columns in the layout.

But the span-x classes seem to overlap this functionality since they allow columns to be defined without referring to .column?

Could someone explain what distinguishes these two classes?

share|improve this question

1 Answer

up vote 3 down vote accepted

the .column class has been dropped. it used to be used with .span-x to define a column but the css was updated so that a div with a .span-x defined a column by itself.

see line 100 at http://github.com/joshuaclayton/blueprint-css/blob/e9e91bb94a0f498e63359556b2301cfd18400377/blueprint/screen.css

the column class is the same as any div with a span-x

take a look at http://www.blueprintcss.org/ for the latest version.

Josh

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.