开发者

Table Format HTML

开发者 https://www.devze.com 2023-01-26 02:17 出处:网络
Could any one give the html code for the below table using ro开发者_运维技巧wspan and colspan Many Thanks

Could any one give the html code for the below table using ro开发者_运维技巧wspan and colspan

Table Format HTML

Many Thanks Hari Gillala


Anyway the answer:

<table border="1" style="width: 100%; height: 100%;">
<tr>
  <td></td>
  <td rowspan="2" colspan="3"></td>
</tr>
<tr>
  <td rowspan="2"></td>
</tr>
<tr>
  <td></td>
  <td></td>
  <td></td>
</tr>
</table>


Perhaps this should be moved to https://webmasters.stackexchange.com/ ?


No rowspans are necessary for that layout.

<table>
   <tr><td>
   <table>
      <tr><td></td></tr>
      <tr><td></td></tr>
   </table>
   </td><td>
   <table>
      <tr><td colspan="3"></td></tr>
      <tr><td></td><td></td><td></td></tr>
   </table>
   </td></tr>
</table>
0

精彩评论

暂无评论...
验证码 换一张
取 消