Blogger Information
Blog 5
fans 0
comment 0
visits 4200
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格的制作
小码博客
Original
1034 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>表格</title>
</head>
<body>
<table border="1" cellpadding="5" cellspacing="0" bgcolor="aqua">
   <caption>购物车</caption>
   <thead>
   <tr align="center">
   <th>编号</th>
   <th>名称</th>
   <th>单价</th>
   <th>数量</th>
   <th>金额</th>
   </tr>
   </thead>

<tbody>
   <tr align="center">
       <td width="20">1</td>
       <td width="50">水</td>
       <td width="50">2元</td>
       <td width="50">1</td>
       <td width="50">2</td>
   </tr>

   <tr align="center">
       <td width="20">2</td>
       <td width="50">水</td>
       <td width="50">2元</td>
       <td width="50">1</td>
       <td width="50">2</td>
   </tr>
</tbody>
   <floot>
       <tr align="center">
           <td colspan="3" >合计:</td>
           <!--<td></td>-->
           <!--<td></td>-->
<td>1</td>
           <td>12</td>
       </tr>
   </floot>
</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
Author's latest blog post