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.

Hopefully I'm asking a stupid question here:

I've got a div on my page that's display:block and 1187px wide. Inside that div I've got a table that is display:table, width:100%, and is 1456px wide. So that's not adding up....

Inside the table I've got a tbody that is display:table-row-group, width:auto, and is 1456px wide. Inside that I've got a tr that is display:table-row, width:100% and is 1456px wide. Good so far....

Inside that I've got a td that is display:table-cell, width:20%, and is 67px wide. That's definitely not 20% of 1456. Another td in there is display:table-cell, width: 40%, and is 1218px wide. That's far more than 40% of 1456. Generally it looks like my widths are being driven by my content and my td's are delightfully ignoring the percentages they've been assigned. One of my td's is width:auto, so it should be able to absorb all the leftover width in the row once the others have taken their respective percentages?

Are there any common pitfalls that I may have fallen into here?

share|improve this question
btw, I'm using Chrome and getting these width calculations from the Chrome Develope Tools. – GenuineSmile29 Dec 16 '11 at 18:09
1  
Stick your css and mark up on here and we can sort your out more quickly :) – Dominic Green Dec 16 '11 at 18:10
got no problems here - jsfiddle.net/qrqVz – Zoltan Toth Dec 16 '11 at 18:24
UPDATE: Okay, so the problem is that the cell contents (which in this case is a user specified equation) has no spaces in it. Is there a way I can tell Chrome where it is appropriate to break the string up onto multiple lines? – GenuineSmile29 Dec 16 '11 at 18:30
I added word-break:break-all to the td and that fixed the problem. This is a CSS3 property so it may not have support in older browsers. – GenuineSmile29 Dec 16 '11 at 19:08
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.