# Tables with diff no of cells data?

**URL:** https://forum.kirupa.com/t/tables-with-diff-no-of-cells-data/313233
**Category:** Uncategorized
**Created:** [August 24, 2010, 3:34pm UTC](https://forum.kirupa.com/t/tables-with-diff-no-of-cells-data/313233 "2010-08-24T15:34:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kpsakthivel](https://avatars.discourse-cdn.com/v4/letter/k/aca169/32.png) [@kpsakthivel](https://forum.kirupa.com/u/kpsakthivel)
#### Post date: [August 24, 2010, 3:34pm UTC](https://forum.kirupa.com/t/tables-with-diff-no-of-cells-data/313233/1 "2010-08-24T15:34:57Z")

</div>

I have page3 with different table content (label, text, textarea - see below code)

# Example:

Page1 - table  
row1 - 3 cells  
row2 - 2 cells

Page2 - table  
row1 - 2 cells  
row2 - 3 cells

Page3 - table  
row1 - 2 cells  
row2 - 2 cells

# sample code:

\<html\>  
\<body\>  
\<table name=“Page1” width=“80%” style=“table-layout:fixed”\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Engine Speed\</td\>  
\<td width=“20%”\>\<input style=“width:100%” value=“100” type=“text” maxlength=“40”/\>\</td\>  
\<td width=“20%”\>\<textarea style=“width:100%” value=“100” rows=“10”\>\</textarea\>\</td\>  
\</tr\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Actual Gear\</td\>  
\<td width=“20%”\>\<input style=“width:100%” value=“5”/\>\</td\>  
\</tr\>\</table\>  
\<br\>  
\<br\>  
\<table name=“Page2” width=“80%” style=“table-layout:fixed”\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Actual Gear\</td\>  
\<td width=“20%”\>\<input style=“width:100%” value=“5”/\>\</td\>  
\</tr\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Engine Speed\</td\>  
\<td width=“20%”\>\<input style=“width:100%” value=“100” type=“text” maxlength=“40”/\>\</td\>  
\<td width=“20%”\>\<textarea style=“width:100%” value=“100” rows=“10”\>\</textarea\>\</td\>  
\</tr\>\</table\>  
\<br\>  
\<br\>  
\<table name=“Page3” width=“80%” style=“table-layout:fixed”\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Actual Gear\</td\>  
\<td width=“20%”\>\<input style=“width:100%” value=“5”/\>\</td\>  
\</tr\>  
\<tr\>  
\<td width=“40%” bgcolor="#999999"\>Engine Speed\</td\>  
\<td width=“20%”\>\<textarea style=“width:100%” value=“100” rows=“10”\>\</textarea\>\</td\>  
\</tr\>  
\</table\>  
\</body\>  
\</html\>

But the each page looks different… !!!

why??? :insomniac:

How to make the page table content looks simular ???
