1 <table border=
"0" cellspacing=
"0" cellpadding=
"0" width=
"80">
2 <!-- notice below width="31" for an img with width="30" -->
3 <tr><td rowspan=
"3" width=
"31" height=
"93"><img width=
"30" height=
"93" src=
"../images/leftbit.jpg"></td>
4 <td width=
"50" height=
"28"><img width=
"25" src=
"../images/1.jpg"><img width=
"25" src=
"../images/2.jpg"></td></tr>
5 <tr><td width=
"50" height=
"25"><img width=
"25" src=
"../images/5.jpg"><img width=
"25" src=
"../images/6.jpg"></td></tr>
6 <tr><td width=
"50" height=
"40"><img width=
"25" src=
"../images/9empty.jpg"><img width=
"25" src=
"../images/10empty.jpg"></td></tr>
9 Here's the same table without the off-by-one error.
11 <table border=
"0" cellspacing=
"0" cellpadding=
"0" width=
"80">
12 <!-- and here width="30" correctly. -->
13 <tr><td rowspan=
"3" width=
"30" height=
"93"><img width=
"30" height=
"93" src=
"../images/leftbit.jpg"></td>
14 <td width=
"50" height=
"28"><img width=
"25" src=
"../images/1.jpg"><img width=
"25" src=
"../images/2.jpg"></td></tr>
15 <tr><td width=
"50" height=
"25"><img width=
"25" src=
"../images/5.jpg"><img width=
"25" src=
"../images/6.jpg"></td></tr>
16 <tr><td width=
"50" height=
"40"><img width=
"25" src=
"../images/9empty.jpg"><img width=
"25" src=
"../images/10empty.jpg"></td></tr>