# HTML: Table Problem

**URL:** https://boards.straightdope.com/t/html-table-problem/134599
**Category:** Factual Questions
**Created:** [October 30, 2002, 10:02pm UTC](https://boards.straightdope.com/t/html-table-problem/134599 "2002-10-30T22:02:59Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Duderdude2](https://avatars.discourse-cdn.com/v4/letter/d/cdc98d/32.png) [@Duderdude2](https://boards.straightdope.com/u/Duderdude2)
#### Post date: [October 30, 2002, 10:02pm UTC](https://boards.straightdope.com/t/html-table-problem/134599/1 "2002-10-30T22:02:59Z")

</div>

At this url:  
[www.nintendovision.com](http://www.nintendovision.com)

I’m using a table to divide the page in two, however, on the left side of the table, my top image appears to be pushed down futher than it should be (it doesn’t touch the top of the table). How can I fix this? Thanks!

---

<div class="post-metadata">

### Author: ![Musicat](https://sea3.discourse-cdn.com/straightdope/user_avatar/boards.straightdope.com/musicat/32/20189_2.png) [@Musicat](https://boards.straightdope.com/u/Musicat)
#### Post date: [October 30, 2002, 10:16pm UTC](https://boards.straightdope.com/t/html-table-problem/134599/2 "2002-10-30T22:16:24Z")

</div>

A 10-second glance at your code shows a \<TR\> (Table Row start) is missing, for starters:

\<TABLE BORDER=“0” CELLSPACING=“0” CELLPADDING=“0”\>  
\<TD\>  
…

Should be:

\<TABLE BORDER=“0” CELLSPACING=“0” CELLPADDING=“0”\>  
\<TR\>  
\<TD\>  
…

There may be other probs, but that needs to be fixed.

You also might use:

\<TD valign=top\> to make sure the stuff is as high as possible in the data area.

---

<div class="post-metadata">

### Author: ![Duderdude2](https://avatars.discourse-cdn.com/v4/letter/d/cdc98d/32.png) [@Duderdude2](https://boards.straightdope.com/u/Duderdude2)
#### Post date: [October 30, 2002, 10:21pm UTC](https://boards.straightdope.com/t/html-table-problem/134599/3 "2002-10-30T22:21:33Z")

</div>

Many Thanks!! Your “valign=top” comand worked perfectly.

---

<div class="post-metadata">

### Author: ![Opengrave](https://avatars.discourse-cdn.com/v4/letter/o/919ad9/32.png) [@Opengrave](https://boards.straightdope.com/u/Opengrave)
#### Post date: [October 30, 2002, 10:24pm UTC](https://boards.straightdope.com/t/html-table-problem/134599/4 "2002-10-30T22:24:09Z")

</div>

I pulled it into frontpage and messed around a bit. Add **\<TD valign=“top”\>** to the cell with the image. I posted the code [here](http://www.camppioneer.org/personal/nintendo.htm) .

Hope this helps.

---

<div class="post-metadata">

### Author: ![Opengrave](https://avatars.discourse-cdn.com/v4/letter/o/919ad9/32.png) [@Opengrave](https://boards.straightdope.com/u/Opengrave)
#### Post date: [October 30, 2002, 10:26pm UTC](https://boards.straightdope.com/t/html-table-problem/134599/5 "2002-10-30T22:26:44Z")

</div>

Oops I may have changed the height and width of the IFRAME - those may need to be reset back to your original numbers.
