Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Greetings,

I've been trying to make a site work for half a day to no avail. IE8 is bad for my mental state.

So, there is a table looking like this:

<table width="100%">
<tr id="header">
 <td colspan="2"></td>
</tr>
<tr id="center">
 <td id="left" style="width: 201px"></td>
 <td id="mainpage" style="width: 100%"></td>
</tr>
</table>

In every browser (including IE7) apart from IE8 the "left" td is fine. In IE8 it exceeds the width according to the mainpage's content.

I'd post some screenshots but it's my first post here.

Any ideas whatsoever?

share|improve this question
   
how you want to make total width of table 201px + 100% ?? – Dobiatowski Jul 22 '10 at 8:07
I don't. But this layout fixes the IE7 issue. And it doesn't affect IE8. – Bill Jul 22 '10 at 8:09

4 Answers

up vote 26 down vote accepted

That width: 100% on the second column doesn't look right - if you're trying to make the second column expand to the rest of the available space, you shouldn't need that at all, so you can remove it. Also, add this to your table:

table-layout: fixed;

to make sure that the widths are obeyed.

complete code:

<table style="width: 100%; table-layout: fixed;">
<colgroup>
    <col style="width: 201px">
</colgroup>
<tr id="header">
    <td colspan="2"></td>
</tr>
<tr id="center">
    <td id="left"></td>
    <td id="mainpage"></td>
</tr>
</table>
share|improve this answer
Thought about this and gave it a try, but once I set the table-layout to fixed the two columns get the same width (50%) and it ignores the fixed values. The 100% of the second column is there as a fix for IE7. – Bill Jul 22 '10 at 8:16
Please try the edited solution with added cols - not a terribly cool solution but it works. – Razor Jul 22 '10 at 8:30
Indeed it does! Seems better than my solution, I'll go with that. Thanks! – Bill Jul 22 '10 at 8:51
thanks................ – Poonam Bhatt Jun 30 '11 at 6:08
table-layout: fixed; worked for me, thank you! – Stanislav Shabalin Nov 16 '11 at 4:11
show 1 more comment

Are you sure it should be 100%

<table width="100%">

The table will be as large as its parent element. May be you should set a fixed width for the table:

<table width="600">
share|improve this answer
The table resides in a div that fits the whole screen. – Bill Jul 22 '10 at 8:13

If you define a width to your table and to your first you don't need to define it for your second .

I guess the second gets 100% from container which is the table.

share|improve this answer

Well, problem somewhat fixed by adding an empty table with a fixed width inside the mainpage .

That way I'm actually setting a min-width to the regardless IE's ignoring attitude. Thanks for all the answers.

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.