Hi, I am doing a table layout that has 3 columns and 3 sections in row. The first two sections have 3 columns but I want the last section to have only 2 columns.

My markup is such

        <tr>
        <td class="firstsection">column 1</td>
        <td class="secondsection">column 2</td>
        <td class="secondsection">column 3</td>
        </tr>

<tr class="third_section_with_two_columns">
        <td cell colspan="2">column 1</td>
        <td cell colspan="2">column 2</td>
        </tr>


W3C validator give me the "cell" is not a member of a group specified for any attribute." error.

How do I do to achieve desired layout and satify validator?


Thanks!

tee


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

Reply via email to