Help me please
I have a table with 9 columns
After Column5, I want to have two rows in row1 = (Qualification) in row2, there are for columns(Ed, Tr, Ex, El) Thank You.

                    <td rowspan="2"><b>Col5<b></td>
                    <tr><td colspan="4"><b>Qualification</b></td></tr>
                    <td><b>Ed</b></td>
                    <td><b>Tr</b></td>
                    <td><b>Ex</b></td>
                    <td><b>El</b></td>

Recommended Answers

All 2 Replies

First row has first five columns with rowspan=2 and last column with colspan=4. Second row has only the last four cells.

<tr>
<td rowspan="2">col 1</td>
<td rowspan="2">col 2</td>
<td rowspan="2">col 3</td>
<td rowspan="2">col 4</td>
<td rowspan="2">col 5</td>
<td colspan="4">Qualification</td>
</tr>

<tr>
<td>Ed</td>
<td>Tr</td>
<td>Ex</td>
<td>El</td>
</tr>

Wow... Thank You So much.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.