Home

1. Introduction

2. Basics review

3. WIDTH

4. VALIGN

5. BORDER

6. BGCOLOR

7. CELLSPACING

8. CELLPADDING

9. ALIGN

10. Table manners

11. Editors

12. Summary

13. Exercises



Classes home

HTML Info home

 

Summary

This series of pages covered the following attributes of table coding:

1. Basic code

   <table>
      <tr>
         <td></td>
         <td></td> 
      </tr>
   </table>

2. WIDTH

   <table width="100%">
      <tr>
         <td width="20%"></td>
         <td width="20%"></td>        

3. VALIGN

   <table>
      <tr>
         <td valign="top"></td>
         <td width="top"></td>        

4. BORDER

   <table border=0> 

5. BGCOLOR

   <table>
      <tr bgcolor="red">
         <td bgcolor="beige">            

6. CELLSPACING

   <table cellspacing=0>

7. CELLPADDING

   <table cellpadding=5>

8. ALIGN

   <table align=right>