It is currently Thu Mar 28, 2024 11:25 am


All times are UTC


Forum rules


Please click here to view the forum rules



Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: please help me with tables
PostPosted: Sat Aug 05, 2006 5:38 pm 
Noobie
Noobie

Joined: Wed Nov 23, 2005 11:14 am
Posts: 11
hi.. please help me with this table I want to make.. this is the code:

Code:
<html><head></head><body>
<table border=1 width=25% bordercolor=black>
  <tr> 
    <td rowspan=2>A<br>A<br>A<br>A<br>A<br>A<br>A<br>A<br></td>
    <td rowspan=2>B</td>
    <td valign=top>
      <table width=100% border=1 valign=top bordercolor=red>
        <tr>
          <td valign=top>1</td>
          <td valign=top>2</td>
        </tr>
        <tr>
          <td valign=top colspan=2>3</td>
        </tr>
      </table>
    </td>
    <td rowspan=2>D</td>
    <td rowspan=2>E</td>
  </tr>
  <tr>
    <td valign=top>C</td>
  </tr>
</table>
</body>
</html>


and this is the result of the above code:

Image

how can I make column "C" to be right below column "3"?

Thank you very much..


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 07, 2006 3:34 pm 
I have no life!
I have no life!

Joined: Sun Feb 13, 2005 6:12 pm
Posts: 1504
Location: My Office
Greetings,

Here is your current code:
Code:
<html><head></head><body>
<table border=1 width=25% bordercolor=black>
  <tr> 
    <td rowspan=2>A<br>A<br>A<br>A<br>A<br>A<br>A<br>A<br></td>
    <td rowspan=2>B</td>
    <td valign=top>
      <table width=100% border=1 valign=top bordercolor=red>
        <tr>
          <td valign=top>1</td>
          <td valign=top>2</td>
        </tr>
        <tr>
          <td valign=top colspan=2>3</td>
        </tr>
      </table>
    </td>
    <td rowspan=2>D</td>
    <td rowspan=2>E</td>
  </tr>
  <tr>
    <td valign=top>C</td>
  </tr>
</table>
</body>
</html>


Here is the adapted code:
Code:
<html><head></head><body>
<table border=1 width=25% bordercolor=black>
  <tr> 
    <td rowspan=2>A<br>A<br>A<br>A<br>A<br>A<br>A<br>A<br></td>
    <td rowspan=2>B</td>
    <td valign=top>
      <table width=100% border=1 valign=top bordercolor=red>
        <tr>
          <td valign=top>1</td>
          <td valign=top>2</td>
        </tr>
        <tr>
          <td valign=top colspan=2>3</td>
        </tr>
        <tr>
          <td valign="top" colspan="2">C</td>
        </tr>
      </table>
    </td>
    <td rowspan=2>D</td>
    <td rowspan=2>E</td>
  </tr> 
</table>
</body>
</html>


PS: Your code is not 100% valid. :wink:

_________________
Best Regards:
Aaron McGowan (aka: CyberGeek, =cipher=)

CyberGeek's Software Solutions
-- WWW: http://www.cybergeeksoftware.com
-- Tech Line: 1-519-860-4557
-- Email: cybergeek@cybergeeksoftware.com


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ]  Moderators: fhmagic, KJ, Moderators, Support Team

All times are UTC


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
100WebSpace © 2011