Blogger Information
Blog 39
fans 2
comment 2
visits 50603
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML5的表格理解
fighting的博客
Original
846 people have browsed it

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>html5表格、列表理解</title>
</head>
<body>
<!--table:表示的是表
   th:代表表头
   tr:代表行
   td:代表单元格
   rowspane:代表单元格可以横跨的行数
   rowspane=“参数"
   colspane:代表单元格可以横跨的列数。
   colspane="参数"
最后单元格可以嵌套表
-->
<table cellspacing="0" align="center" width="500px" height="100px" border="1px" bordercolor="red">
   <tr height="50px">
       <td rowspan="3">
           <table cellspacing="0" align="center" width="50px" height="10px" border="1px" bordercolor="bulue">
               <tr><td>12345</td></tr>
           </table>
       </td>
<!--<td>十年磨一剑</td>
       <td>霜刃未曾试</td>
       <td>今日把示君</td>
       <td>谁有不平事</td>-->
<td colspan="4">llll</td>
   </tr>
   <tr>
       <td align="center">十年磨一剑</td>
       <td align="center">霜刃未曾试</td>
       <td align="center">今日把示君</td>
       <td align="center">谁有不平事</td>
   </tr>
   <tr>
       <td align="center">十年磨一剑</td>
       <td align="center">霜刃未曾试</td>
       <td align="center">今日把示君</td>
       <td align="center">谁有不平事</td>
   </tr>
</table>
</body>
</html>

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
Author's latest blog post