2009-03-22から1日間の記事一覧

WEBデザイン授業11日目

テーブル 罫線を繋げて見せる table{ border-collapse:collapse; border-width:1px; } セルとセルの間を空ける(セットで記述) table{ border-collapse:separate; border-spacing:1px; } HTML <p>テーブル3</p> <table id="table3" summary="作表の練習"> <caption>表題</caption> <tr> <th>項目1</th> <th>項目2</th> <th>項目3</th> <th>項目4</th> </tr> <tr> <td>&nbsp;</td></tr></table>