marvin,

on Thursday, November 9, 2006 at 04:59 [email protected] wrote:

I don't understand your problem well enough to give you a solution,
but you should consider the following things:

1. You use two table tags. Put the summary Attribute into the first
   table tag and drop the second one.
2. <br> isn't allowed directly under <table>. Get rid of them. If you
   need another hook for styling, wrap the header <tr> inside of
   <thead> and the body <tr>s inside <tbody>.
3. <th> means the all inside this tag is a table header. I don't see
   any use the <h3> inside of <th>
4. the width="100%" border="2" cellpadding="2" attributes are visual
   attributes. You should consider moving these information to your
   style definitions:
table#StarTrek {
  width: 100%;
  border: 2px solid #000;
}
table#StarTrek td {
  padding: 2px;
}

I hope that helps!

regards

  Martin

> <table width="100%" border="2" cellpadding="2" id="StarTrek">
> <table summary="This table tells about the cast of Star Trek Orriginal">
> <caption>Star Trek Original</caption>
> <br>
> <tr>
> <th> <h3>Actors Name</h3> </th>
> <th> <h3>Part</h3> </th>
> </tr>
> <br>
> <tr>
> <td>William Shatner</td>
> <td>Captain James T Kirk</td>
> </tr>
> </table>



 





*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to