Day.12.16 HTML表格案例二

作者: 挂树上的骷髅怪 | 来源:发表于2016-12-16 21:04 被阅读8次
<!DOCTYPE html>
<html>
 <head>
 <meta  charset="utf-8">
  <title> 图片表格二 </title>
 </head>
 <body>
 <!--cellpadding:表示各个空格内容的填充大小
       cellspacing:表示各个空格之间的距离 
 -->
   <table border="1px" width="100px" cellpadding="30px" cellspacing="50px">
     <tr><td>cat</td><td>dog</td></tr>
     <tr><td>cow</td><td>monkey</td></tr>
   </table>
 </body>
</html>

相关文章