# Table Problems \[HTML\]

**URL:** https://forum.kirupa.com/t/table-problems-html/28684
**Category:** programming
**Created:** [August 16, 2003, 9:38pm UTC](https://forum.kirupa.com/t/table-problems-html/28684 "2003-08-16T21:38:20Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![nobody](https://avatars.discourse-cdn.com/v4/letter/n/94ad74/32.png) [@nobody](https://forum.kirupa.com/u/nobody)
#### Post date: [August 16, 2003, 9:38pm UTC](https://forum.kirupa.com/t/table-problems-html/28684/1 "2003-08-16T21:38:20Z")

</div>

Haha… html problems… that’s gotta be a first

well anyway I can’t get 2 tables side by side for some reason and it’s really pissing me off.

[http://www.syntheticwhat.net/expire](http://www.syntheticwhat.net/expire)

let me know if you know what to do

thanks

-xxvii(brain impaired)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 16, 2003, 9:52pm UTC](https://forum.kirupa.com/t/table-problems-html/28684/2 "2003-08-16T21:52:40Z")

</div>

um… try having a table with two vertical cells, then place a table inside each of those 🙂

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 16, 2003, 10:09pm UTC](https://forum.kirupa.com/t/table-problems-html/28684/3 "2003-08-16T22:09:38Z")

</div>

i did… and it didnt work :\*(

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2003, 12:46am UTC](https://forum.kirupa.com/t/table-problems-html/28684/4 "2003-08-17T00:46:07Z")

</div>

What Ahmed suggested should work and look like this.  
\<table width=“60%” border=“1” cellspacing=“1” cellpadding=“3” bgcolor="#66CCFF"\>  
\<tr\>  
\<td\>  
\<table width=“100%” border=“1” cellspacing=“1” cellpadding=“3” bgcolor="#CCFFFF"\>  
\<tr\>  
\<td\>&nbsp;\</td\>  
\<td\>&nbsp;\</td\>  
\</tr\>  
\<tr\>  
\<td\>&nbsp;\</td\>  
\<td\>&nbsp;\</td\>  
\</tr\>  
\</table\>  
\</td\>  
\<td\>  
\<table width=“100%” border=“1” cellspacing=“1” cellpadding=“3” bgcolor="#FFCCFF"\>  
\<tr\>  
\<td\>&nbsp;\</td\>  
\<td\>&nbsp;\</td\>  
\</tr\>  
\<tr\>  
\<td\>&nbsp;\</td\>  
\<td\>&nbsp;\</td\>  
\</tr\>  
\</table\>  
\</td\>  
\</tr\>  
\</table\>

```php

<table width="60%" border="1" cellspacing="1" cellpadding="3" bgcolor="#66CCFF">
  <tr>
    <td>
      <table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#CCFFFF">
        <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
    </td>
    <td>
      <table width="100%" border="1" cellspacing="1" cellpadding="3" bgcolor="#FFCCFF">
        <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table>
    </td>
  </tr>
</table>

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2003, 4:05am UTC](https://forum.kirupa.com/t/table-problems-html/28684/5 "2003-08-17T04:05:40Z")

</div>

thanks abzoid… i know it works… i’m just having some difficulties with it for some reason or another.
