1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
fixed table - width on td overriden
<table border=10 cellspacing=3 cellpadding=5 width=400 border>
<tr>
<td width=100%>foo</td>
<td width=100>foo</td></tr>
</table>
<hr align=left style="width:400px; alignx:left">
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=500 border>
<tr>
<td width=20>20px</td>
<td>auto</td></tr>
<tr>
<td width=50%>50%</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=300 border>
<tr>
<td width=100>100</td>
<td>auto</td></tr>
<tr>
<td width=10%>10%</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=500 border>
<col width=50%>
<tr>
<td width=20%>50%Col,20%Cell</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=500 border>
<col width=20%>
<tr>
<td width=50%>20%Col,50%Cell</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=500 border>
<col width=50%>
<tr>
<td width=100>50PerCol,100Cell</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - percent cell wins over fix cell (and in IE5)
<table width=500 border>
<col width=20%>
<tr>
<td width=300>20PerCol,300Cell</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - % wins over fixed even on colspan
<table width=300 border>
<tr>
<td width=50 colspan=2>50CS2</td>
<td>auto</td></tr>
<tr>
<td width=50% colspan=2>50%CS2</td>
<td>auto</td></tr>
</table>
<BR>
fixed table - % wins over fixed even on colspan
<table width=300 border>
<tr>
<td width=200 colspan=2>100CS2</td>
<td>bar</td></tr>
<tr>
<td width=30% colspan=2>30%CS2</td>
<td>bar</td></tr>
</table>
<BR>
auto table - percent colspan wins over fixed colspan XXX
<table border>
<tr>
<td width=500 colspan=2>500CS2</td>
<td>atuo</td></tr>
<tr>
<td width=10% colspan=2>10%CS2</td>
<td>auto</td></tr>
</table>
<BR>
auto table - percent colspan wins over fixed colspan
<table border>
<tr>
<td width=500 colspan=2>500CS2</td>
<td>auto</td></tr>
<tr>
<td width=20% colspan=2>20%CS2</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
auto table - percent colspan wins over fixed colspan
<table border>
<tr>
<td width=200 colspan=2>200CS2</td>
<td>auto</td></tr>
<tr>
<td width=20% colspan=2>20%CS2</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
auto table - percent colspan wins over fixed colspan
<table border>
<tr>
<td width=1000 colspan=2>1000CS2</td>
<td>auto</td></tr>
<tr>
<td width=20% colspan=2>20%CS2</td>
<td>auto</td></tr>
<tr>
<td>auto</td>
<td>auto</td>
<td>auto</td></tr>
</table>
<BR>
percent cell/col percentage conflict goes to cell (and in IE5)
<table width=500 border cellspacing=5>
<col width=80%>
<tr>
<td width=30%>30%-80%col</td>
<td>auto</td></tr>
</table>
|