zoukankan      html  css  js  c++  java
  • 多层表格嵌套

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>HTML表格</title>
    <style type="text/css">
    td{ border-right:solid 1px #000; border-top:solid 1px #000}
    </style>
    </head>
    <body>
    <div>
    <table width="200" border="0" cellpadding="0" cellspacing="0" style="border-left:solid 1px #000; border-bottom:solid 1px #000">
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
        </tr>
        <tr>
            <td>aa</td>
            <td colspan="3" >
                <table width="100%" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                        <td height="26" style="border-top: none;">&nbsp;</td> 
                        <td style="border-top: none;">&nbsp;</td>
                        <td style="border-top: none;">&nbsp;</td>
                        <td style="border-top: none;">&nbsp;</td>
                        <td style="border-top: none; border-right: none;">&nbsp;</td>
                    </tr>
                    <tr>
                        <td>&nbsp;</td> 
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td>&nbsp;</td>
                        <td style="border-right: none;">&nbsp;</td>
                    </tr>
                </table>
        </td>
        </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
        </tr>
        <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
        </tr>
    </table>
    </div>
    </body>
    </html>
  • 相关阅读:
    Python matplotlib基本设置
    Python可视化工具
    使用Python进行数据分析——常见实用的第三方库
    Python第三方库安装
    Python pip的安装
    Python cx_Oracle数据库连接
    Python安装使用(WinXP)
    大数据学习路线(转载)
    SQL 数据库学习之路-转自大神笔记
    Java字符串处理函数汇总
  • 原文地址:https://www.cnblogs.com/kedarui/p/4072742.html
Copyright © 2011-2022 走看看