“I bought this guide a few days ago to prepare for my interview with Oracle. Many of the questions they asked me were from this guide. I found this book absolutely great!”
Its just sufficient to give the number of column<td> tags within the row tags … and its fine if the cells are varying within each rows <tr> <td> Test </td> </tr> <tr> <td> Test1 </td> <td> Test2 </td> </tr>
colspan will help you keep the alignment of your overall table, that is avoids the step or zig-zag pattern due to different no. of cells in different rows.
You can use colspan.
Example:
<tr>
<td colspan=”2″>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
</tr>
Its just sufficient to give the number of column<td> tags within the row tags … and its fine if the cells are varying within each rows
<tr>
<td>
Test
</td>
</tr>
<tr>
<td>
Test1
</td>
<td>
Test2
</td>
</tr>
colspan will help you keep the alignment of your overall table, that is avoids the step or zig-zag pattern due to different no. of cells in different rows.
Leave an Answer/Comment