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