<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>信息管理系统</title> </head> <body> <table border="0" width="960" height="760" cellpadding="0" cellspacing="0" align="center" bgcolor="#19a97b"> <tr> <!-- logo部分 --> <td colspan="1" rowspan="2" width="150" height="130" align="center"> <iframe src="inc/logo.html" name="logo" scrolling="no" frameborder="0" height="130" width="100%"></iframe> </td> <!-- 账号设置部分 --> <td colspan="4" width="810" height="50" align="center"> <iframe src="inc/setinfo.html" name="setinfo.html" scrolling="no" frameborder="0" height="100%" width="100%" ></iframe> </td> </tr> <tr height="80"> <!-- 中部导航 --> <!-- 中部导航1 --> <td width="200" align="center"> <iframe src="inc/middle1.html" name="middleinfo1" scrolling="no" frameborder="0" height="80" width="100%"></iframe> </td> <!-- 中部导航2 --> <td width="200" align="center"> <iframe src="inc/middle2.html" name="middleinfo2" scrolling="no" frameborder="0" height="80" width="100%"></iframe> </td> <!-- 中部导航3 --> <td width="200" align="center"> <iframe src="inc/middle3.html" name="middleinfo3" scrolling="no" frameborder="0" height="80" width="100%"></iframe> </td> <!-- 中部导航4 --> <td width="200" align="center"> <iframe src="inc/middle4.html" name="middleinfo4" scrolling="no" frameborder="0" height="80" width="100%"></iframe> </td> </tr> <tr> <!-- 左侧导航 --> <td colspan="1" height="600" align="center"> <iframe src="inc/left.html" name="left" scrolling="no" frameborder="0" height="800" width="100%"></iframe> </td> <!-- 中部显示 --> <td colspan="4" align="center"> <iframe src="inc/main.html" name="main" scrolling="no" frameborder="0" height="800" width="100%"></iframe> </td> </tr> <tr> <!-- 页脚 --> <td colspan="5" height="50" align="center"> <iframe src="inc/footer.html" name="footer" scrolling="no" frameborder="0" height="100%" width="100%"></iframe> </td> </tr> </table> </body> </html>
账号设置部分实例==>为什么在admin页面中横线显示不出来
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>seinfo</title> </head> <body> <table width="790" height="50"> <tr> <td height="20" align="right"><strong><small><a href="">admin</a> <a href="">退出</a></small></strong></td> </tr> <tr> <td height="30"><hr></td> </tr> </table> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例