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
|
<html><body>
fixed width table with 100px width image in 1st cell
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px width table in 1st cell
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<table width=100>
<tr>
<td>foo</td></tr></table></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px width image in 1st cell
<table bgcolor=orange border=1>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px width 1st cell containing image
<table width=500 bgcolor=orange border=1>
<tr>
<td width=100>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px width 1st cell containing image
<table bgcolor=orange border=1>
<tr>
<td width=100>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
small fixed width table with 100px image in 1st cell
<table width=150 bgcolor=orange border=1>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px image in 1st cell, 100px 2nd cell containing text
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td width=100>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px image in 1st cell, 100px 2nd cell containing text.
This differs from Nav4.5 but is similar to IE5
<table bgcolor=orange border=1>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td width=100>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
Fixed width table with colspan=2 in 1st row, 2nd row containing 100px image, text
<table width=500 bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Auto width table with colspan=2 in 1st row, 2nd row containing 100px image, text
<table bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Fixed width table with colspan=2 in 1st row, 2nd row containing 100px image, 100px cell
<table width=500 bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td width=100>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Auto width table with colspan=2 in 1st row, 2nd row containing 100px image, 100px cell
<table bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=../images/raptor.jpg width=100 height=100></td>
<td width=100>there there there there there there there there there there there there</td></tr>
</table>
<BR>
</body></html>
|