Blogger Information
Blog 3
fans 0
comment 0
visits 1556
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第一次作业
邈看银河系的博客
Original
581 people have browsed it

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">

   <title>表格的写法</title>
</head>
<body>
<ul>
   <li>1.有备无患的奔驰专用机油,1个,800元</li>
   <li>2.我的未来不是梦,爱你每分钟.2个,1200元</li>
   <li>3.你是什么样子的产品编码呢.6个,2300元</li>

</ul>

<table border="1" style="color: red" cellpadding="5" cellspacing="0"<!--cellspacing代表的意思是去除表格重叠边框折叠成一个-->>
   <!--表头 表格标题caption-->
<caption>购物车</caption>
<!--表格的表头-->
<thead>
   <tr bgcolor="#7fffd4" align="center">
       <td>编号</td>
       <td>名称</td>
       <td>单价</td>
       <td>数量</td>
       <td>价格</td>
   </tr>
   </thead>
   <tbdoy>
   <tr align="center">>
       <td width="50">1</td>
       <td width="250">有备无患的奔驰专用机油</td>
       <td width="50">800元</td>
       <td width="80">1</td>
       <td width="80" rowspan="1">800元</td>
   </tr>
       <tr align="center">><!--tr代表一行的意思-->
<td width="50">2</td><!--td代表一列的意思-->
<td width="250">我的未来不是梦,爱你每分钟</td>
           <td width="50">1200元</td>
           <td width="80">2</td>
           <td width="80">2400元</td>
       </tr>
       <tr align="center">>
           <td width="50">3</td>
           <td width="250">你是什么样子的产品编码呢.</td>
           <td width="50">2300元</td>
           <td width="80">10</td>
           <td width="80">23000元</td>
       </tr>
   </tbdoy>
   <tfoot>
   <tr align="center">>
       <td colspan="3">总计</td>
       <td>13个</td>
       <td>26200元</td>
<!--<td></td>-->
       <!--<td></td>-->
</tr>
   </tfoot>

   


</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