iNET Interactive - Online Advertising Agency
          
   Home    Authors    About    Login    Contact Us
   Search:   
Advanced Search     
  Articles

  ASP (26)
  ASP.NET (19)
  C and C++ (4)
  CFML (2)
  CGI and Perl (16)
  Flash (2)
  Java (7)
  JavaScript (28)
  PHP (92)
  MySQL (13)
  MSSQL (3)
  HTML (35)
  SEO (9)
  Visual Basic (12)
  CSS (13)
  SSI (5)
  XML (12)
  C# (14)

  Developer News

August 8, 2008
Reader Question: What graphics compression program do you use?
About
 
August 7, 2008
Google's Big Mistake: Getting Rid of Google Page Creator, What Do...
About
 
August 7, 2008
Wish XML a happy birthday
About
 
August 7, 2008
Poll: How important is SEO to your overal website strategy?
About
 
August 7, 2008
How to Create a Search Feature with PHP and MySQL
WebReference.com
 
August 7, 2008
1 comment
.net
 
Courtesy of moreover.com
 
Want to receive new articles via e-mail? Click here!
/Home /HTML

HTML Tables 101 

  Views:    6458
  Votes:    1
by Diego Botello 11/30/03 Rating: 

Synopsis:

Tables are a fundamental part of any web page and let you keep an order on your web design, so mastering them is a must for every web developer.
Pages: firstback1 2 forwardlast
The Article

<td> attributes

The <td> tag attributes are also similar to the previous ones, although there are some differences.  The main differences are the colspan and rowspan attributes. This properties let you define the span of a cell column or row respectively. Here is an example of the use of colspan:

<table border=2 >
<tr>

<td colspan=2 align='center'> Countries</td>

</tr>
<tr >
<td>Canada</td>
<td>Ontario</td>
</tr>
<tr >
<td>USA</td>
<td>Washington</td>
</tr>
<tr>
<td>England</td>
<td>London</td>
</tr>
</table>

Countries
Canada Ontario
USA Washington
England London

 

Here is an example of the use of rowspan:

<table border=2 >

<tr >
<td rowspan=3 align='center'> Countries</td>
<td>Canada</td>
<td>Ontario</td>
</tr>
<tr >
<td>USA</td>
<td>Washington</td>
</tr>
<tr>
<td>England</td>
<td>London</td>
</tr>
</table>

Countries Canada Ontario
USA Washington
England London

Pages: firstback1 2 forwardlast

Similar/related articles:


 
  Sponsors