9
给HTML表格行加上边框<tr>
是否可以<tr>一次性为表格行加上边框,而不是给单个单元格加上边框,<td>例如, <table cellpadding="0" cellspacing="0" width="100%" style="border: 1px;" rules="none"> <tbody> <tr> <th style="width: 96px;">Column 1</th> <th style="width: 96px;">Column 2</th> <th style="width: 96px;">Column 3</th> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td style="border-left: thin solid; border-top: thin solid; border-bottom: thin solid;">&nbsp;</td> <td style="border-top: thin solid; border-bottom: thin solid;">&nbsp;</td> <td style="border-top: thin solid; …
90
html
css
border
html-table