<td>
タグの間に空白を追加する方法を探しています。スペース均等にテーブルがありません
私は私がやろうとしていた内容に次のイメージをつかん:
を、私は同じ結果を再現することはできないのですが。どんな助けもありがとう。
#sidebarright {
float: right;
width: 30%;
padding: 0;
margin: 0;
padding-top: 20px;
}
#sidebarright a {
color: grey;
}
.rightbuttons {
background-image: url(./img/Resources_Button.jpg);
background-repeat: no-repeat;
padding: 14px 0 20px 11px;
}
<div id="sidebarright">
<a href="#"><img class="buttonUlti" src="img/Pro.jpg" alt="Pro" /></a>
<table width="100%;">
<tbody>
<tr>
<th class="resstyle">Resources</th>
</tr>
<tr>
<td class="rightbuttons"><a href="Form.cfm"Forms</a></td>
<td class="rightbuttons"><a href="Postings.cfm">Job Postings</a></td>
</tr>
<tr>
<td class="rightbuttons"><a href="Locations.cfm">Locations</a></td>
<td class="rightbuttons"><a href="Com.cfm">Comp</a></td>
</tr>
<tr>
<td class="rightbuttons"><a href="Care.cfm">Care</a></td>
<td class="rightbuttons"><a href="Photos.cfm">Photos</a></td>
</tr>
<tr>
<td class="rightbuttons"><a href="Safety.cfm">Safety</a></td>
<td class="rightbuttons"><a href="Directory.cfm">Directory</a></td>
</tr>
<tr>
<td class="rightbuttons"><a href="Alerts.cfm">Alerts</a></td>
</tr>
</tbody>
</table>
</div>
CELLSPACING/CELLPADDINGテーブル属性? – David
@DavidこれらはHTML5で削除されました。それはCSSで行われるべきです – 4castle