Blogger Information
Blog 35
fans 0
comment 0
visits 26671
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3实例演示表格的用法以及行列合并的应用
锋芒天下的博客
Original
571 people have browsed it
<!DOCTYPE html>
<html lang="ne">
<head>
<meta charset="UTF-8">
<title>实例演示表格的用法以及行列合并的应用</title>
</head>
<body>

<table border="1" cellspacing="0">
<thead>
    <tr>
        <th></th>
        <th></th>
        <th></th>
    </tr>
</thead>
<tbody>    
    <tr>
        <td></td>
        <td></td>
        <td rowspan="2"></td>
    </tr>
    <tr>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td></td>
        <td></td>
        <td></td>
    </tr>
</tbody>
<tfoot>
    <tr>
        <td colspan="2"></td>
        <td></td>
    </tr>
</tfoot>
</table>


</body>

</html>


Correction status:qualified

Teacher's comments:语法是正确的
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments