Creating a Table using HTML - Keeping all cells the same size

bdenesex

New Member
Messages
2
Reaction score
1
Points
3
Hi!
Can anyone give me a hint about how to create a table, with graphics inserted some cells ( but not all) and still keep all the cells the same size?
 

ttbx10ho

Member
Messages
62
Reaction score
5
Points
8
table = width 600
tr = height 200
td = width 200
td = width 200
td - width 200
 

coningsb

New Member
Messages
4
Reaction score
0
Points
1
Code:
<table width="250" height="250" border="1" cellpadding="0" cellspacing="0">
        <col width="150" />
          <col width="150" />
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>binfo</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>Oinfo</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
          <tr>
            <td>info</td>
            <td>info</td>
          </tr>
        </table>
thats what ive got mine in if thats any help
 
Top