日期:2014-05-17  浏览次数:20589 次

table中table边框问题


求高手去掉里面表格的外边框,效果图,如下

html?css?table

------解决方案--------------------
CSS中属性border-collapse:collapse;
------解决方案--------------------
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<style type="text/css">
table,tr,td
{
    border:1px solid black;
}
table
{
    border-collapse:collapse;
}
</style>
<body>
    <form id="form1" runat="server">
    <div>
        <table style=" ">
            <tr>
                <td>姓名</td><td>年龄</td>
            </tr>
            
            <tr>
                <td>张三</td><td>18</td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>

------解决方案--------------------



<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
</head>
<style type="text/css">
    table, tr, td
    {
        border: 1px solid black;
    }
    table
    {
        border-collapse: collapse;
    }
</style>
<body>
    <form id="form1" runat="server">
    <div>
        <table style="width: 300px; height: 200px">
            <tr style="width: 300px; height: 200px ">
                <td >
                    <table style="width: 300px; height: