表格嵌套的一个实现方法
CSS配合Table实现一个表格嵌套的效果,常用于模块导航,结构清淅,代码简洁。 香港公司注册
<html>
<head>
<title>表格嵌套的一个实现方法</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>网页设计</font></td>
</tr>
</table>
</legend><br>
</fieldset>
</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>表格嵌套的一个实现方法</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>网页设计</font></td>
</tr>
</table>
</legend><br>
</fieldset>
</td>
</tr>
</table>
</body>
</html>