2011年3月18日金曜日

tableの属性cellspacing="0", cellpadding="0"をCSSで対応する

<table cellspacing="0" cellpadding="0">
 <tr>
  <th>見出し</th>
  <td>コンテンツ</td>
 </tr>
 <tr>
  <th>見出し</th>
  <td>コンテンツ</td>
 </tr>
</table>
  
<では無くて。。。CSSでやると ▼>
<style type="text/css">
table {
 border-collapse: collapse;
}
</style>

<table>
 <tr>
  <th>見出し</th>
  <td>コンテンツ</td>
 </tr>
 <tr>
  <th>見出し</th>
  <td>コンテンツ</td>
 </tr>
</table> 

0 件のコメント: