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.

i have this site: http://manual.businesstool.dk/

And i want the columns to fit the window, with the body margin. It still expands beyond the window because of the margin, why?

share|improve this question

1 Answer

One way to do this is to get rid of the height: 100%; declaration and instead add bottom: 0;.

Another way is to use box-sizing: border-box; but that isn't supported in all browsers.

share|improve this answer
This does not seem to work. Where should i add the bottom: 0? – Esben Jul 27 '11 at 10:42

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.