当前位置:网站首页>Irregular layout of table label

Irregular layout of table label

2022-06-22 03:03:00 Programming Bruce Lee

introduce

utilize table In the label td Of rowspan Merge Columns ,colspan Merger line

A simple case

 Insert picture description here

The code is as follows :

<table border="1">
    <tr>
        <td>aa</td>
        <td rowspan="2">cc</td>
    </tr>
    <tr>
        <td>bb</td>
    </tr>
</table>

 Insert picture description here

<table border="1">
    <tr>
        <td rowspan="2">cc</td>
        <td>aa</td>
    </tr>
    <tr>
        <td>bb</td>
    </tr>
</table>

 Insert picture description here

<table border="1">
    <tr>
        <td>cc</td>
        <td>aa</td>
    </tr>
    <tr>
        <td colspan="2">bb</td>
    </tr>
</table>

 Insert picture description here

<table border="1" cellpadding="0" cellspacing="0">
    <tr>
        <td rowspan="2">ccc</td>
        <td colspan="2">aaa</td>
    </tr>
    <tr>
        <td>bb</td>
        <td rowspan="2">vvv</td>
    </tr>
    <tr>
        <td colspan="2">eee</td>
    </tr>
</table>
原网站

版权声明
本文为[Programming Bruce Lee]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206220250404116.html