954,174 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Tables Sizes in this issue

hi
how can i make one table like in this image
http://i50.tinypic.com/xbemg7.jpg

i tried this code but it doesn't work , they fitting to each other

<table border="1">
  <tr>
    <td width="300">stuff-1</td>
    <td width="700">stuff-2</td>
  </tr>
    <tr>
    <td width="700">stuff-3</td>
    <td width="300">stuff-4</td>
  </tr>
</table>
fuchsia555
Light Poster
30 posts since Dec 2009
Reputation Points: 10
Solved Threads: 0
 

Hi,

Its a simple case of using colspans. Here is a working example

<table width="1000px" border="0" height="300px">
        <tr style="height: 1px;">
            <td>
            </td>
            <td>
            </td>
            <td>
            </td>
        </tr>
        <tr>
            <td width="300" bgcolor="red">
            </td>
            <td colspan="2" width="700" bgcolor="blue">
            </td>
        </tr>
        <tr>
            <td colspan="2" width="700" bgcolor="blue">
            </td>
            <td width="300" bgcolor="red">
            </td>
        </tr>
    </table>
macneato
Posting Pro in Training
421 posts since Jun 2007
Reputation Points: 46
Solved Threads: 48
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: