html 表格嵌套
表格的嵌套就是表格里再有表格,表格的嵌套作用一方面是外观更为漂亮,另一面出于布局的需要,或者两者皆有。只要在外表格(最外面的表格)的<td></td>标签间加入对应的table标签就行。
<table border=8 bordercolor=#u0099cc width=100%> <tbody> <tr> <td>Table No.1(Father Table) <table border=8 bordercolor=#ccffcc width=100%> <tbody> <tr> <td><br>Table No.2(Son Table)<br></td> </tr> </tbody> </table> Table No.1(Father Table) </td> </tr> </tbody> </table>
如果要使外表格里有里表格(表格里面的表格)一上一下分布:只要在外表格的<td></td>标签间加入多个对应的table标签就行
<table border=6 bordercolor=#888888 width="100%"> <tbody><tr><td> <table border=5 bordercolor=#ffcc00 width="100%" height=200> <tbody><tr><td></td></tr></tbody> </table> <table border=5 bordercolor=#ffcc00 width="100%" height=200> <tbody><tr><td></td></tr></tbody> </table> </td></tr></tbody> </table>
如果要使外表格里 有里表格在一行:只要在外表格的多个<td></td>标签间加入对应的table标签就行
<table border=6 bordercolor=#888888 width="100%"> <tbody><tr><td> <table border=5 bordercolor=#ffcc00 width="100%" height=200> <tbody><tr><td></td></tr></tbody> </table></td> <td> <table border=5 bordercolor=#ffcc00 width="100%" height=200> <tbody><tr><td></td></tr></tbody> </table> </td></tr></tbody> </table>
相关推荐
行吟阁 2020-08-09
表格的现在还是较为常用的一种标签,但不是用来布局,常见处理、显示表格式数据。在HTML网页中,要想创建表格,就需要使用表格相关的标签。<table> <tr> <td>单元格内的文字</td> ...
gufudhn 2020-08-09
玫瑰小妖 2020-06-07
lyg0 2020-05-28
momode 2020-09-11
思君夜未眠 2020-09-04
世樹 2020-11-11
SCNUHB 2020-11-10
bleach00 2020-11-10
FellowYourHeart 2020-10-05
jessieHJ 2020-08-19
末点 2020-08-03
nimeijian 2020-07-30
好记忆也需烂 2020-07-28
zlsdmx 2020-07-05
tomson 2020-07-05
tianqi 2020-07-05