これをチェックしてください。
table{
border: 1px solid #121212;
border-collapse: separate;
}
tr{
display: block;
}
tr:nth-child(2n+2){
padding-bottom: 10px;
}
td{
border-color: #121212;
border-style: solid;
border-width: 1px 1px 1px 0;
border-spacing: 0 5px;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<table cellspacing="0">
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
<tr>
<td width="100" scope="col">a </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
<td width="100" scope="col"> </td>
</tr>
</table>
<p> </p>
</body>
</html>
今では正常に動作します。
だけtr{ display: block;}
その後、tr:nth-child(2n+2){padding-bottom: 10px;}
の
が重複する可能性:とhttp://stackoverflow.com/questions/351058/space-between-two-rows-in-a-table – Mart
使用 'ボーダー-spacing' 'tr'。 'border-spacing:10px;' – Rahul
[テーブル内の2つの行の間にスペースがありますか?](http://stackoverflow.com/questions/351058/space-between-two-rows-in-a-table) – isherwood