AAARRRGGHH!!! HTML is driving me crazy!! How do I get the cells in a table to behave independant of each other?

KDOG

Diamond Member
Oct 9, 1999
5,525
14
81
WHen I get done putting something in one cell in a table, and start to put something in the next cell and press return the text/pics,etc. in the other cells will drop down to!!! RRRRRRR!!! How do I stop that?
 

kami

Lifer
Oct 9, 1999
17,627
5
81
align the cells to the top

<td valign=&quot;top&quot;>

edit: vertical align, hence valign. are you usig dreamweaver? just change the &quot;vert&quot; setting when you have a cell selected
 

KDOG

Diamond Member
Oct 9, 1999
5,525
14
81
No I'm using FrontPage2002. Its been working great except for that....
 

kuk

Platinum Member
Jul 20, 2000
2,925
0
0


<< Tables can't be nested. >>




What do you mean? :confused:You can have tables inside of tables, inside of tables .... how do you think AT (or any major site) is structured?
 

KDOG

Diamond Member
Oct 9, 1999
5,525
14
81
Thanks Kami!!!(and the rest of you) That worked great!!! I have to remember that I can stick tables inside of tables....
 

KDOG

Diamond Member
Oct 9, 1999
5,525
14
81
Got to go to work now, ugh - midnite shift - thanks all! Keep that infor rollin'
 

KDOG

Diamond Member
Oct 9, 1999
5,525
14
81
Ok new problem....My images aren't showing up on the site. I'm using WS-FTP 32bit. Their loaded up onto my hosters server, I don't know why they aren't showing up....
 

kuk

Platinum Member
Jul 20, 2000
2,925
0
0
Locutus: I'm not following you ...

This here WILL work:

<table>
  <tr>
    <td>First Cell</td>
    <td>Second Cell</td>
  </tr>
  <tr>
    <td>
      <table>
        <tr>
          <td>Nested</td>
          <td>Table</td>
        </tr>
      </table>
    </td>
  </tr>
</table>




wow ... that was long, inserting all those non-breaking spaces.