ホームページ > 記事 > ウェブフロントエンド > 表に線を引くにはどうすればよいですか? trを追加した場合、行の長さは100%ではありません。 _html/css_WEB-ITnose
<tr style="background:#000000;height:1px;width:100%"> <td height="1px;"></td></tr>
<table style="background: #0CA3DC" border="0"> <tr> <td height="20px;">aaaaaaaa</td> </tr> <tr style="background:#000000;height:1px;width:100%"> <td height="1px;"></td> </tr> <tr> <td>bbbbb</td> </tr> <tr> </tr></table>
table plus border-collapse:collapse
border-collapse: collapse;
これを行うことと境界線を作成することの違いは何ですか?なぜ単に境界線を使用しないのでしょうか?