CSS配合Table實(shí)現(xiàn)一個(gè)表格嵌套的效果,常用于模塊導(dǎo)航,結(jié)構(gòu)清淅,代碼簡(jiǎn)潔。 香港公司注冊(cè)
<html>
<head>
<title>表格嵌套的一個(gè)實(shí)現(xiàn)方法</title>
</head>
<body>
<table width="200">
<tr>
<td><fieldset style="width:200" align="center"> <legend>
<table style="border: 1 solid #000000" width="80" cellspacing="1" cellpadding="0" height="20">
<tr>
<td><font color=blue>網(wǎng)頁(yè)設(shè)計(jì)</font></td>
</tr>
</table>
</legend><br>
</fieldset>
</td>
</tr>
</table>
</body>
</html>