2

我真的很想使用这个表格的布局,但是我怎样才能把它提升到与 HTML5 等效的 CSS 标准呢?

<html>
<head></head>
<body>
<table border="1" bordercolor="#000000" style="background-color:#ffffff" width="100%" cellpadding="3" cellspacing="1">
    <tr>
        <td>Table Cell</td>
        <td>Table Cell</td>
        <td>Table Cell</td>
    </tr>
</table>
</body>
</html>
4

2 回答 2

4
table {
    background-color: #fff;
    border:1px solid #000;
    border-spacing: 1px;
    border-collapse: separate;
    width: 100%;
}

table td {
    margin: 1px;
    padding: 3px;
}
于 2012-11-27T17:01:25.027 回答
0

创建一个 .css 文件,然后使用标记从您的 HTML 页面链接到该文件

给你的桌子一个 id="mytable"

#mytable {
background-color:#ffffff;
border:1px solid #000000;
width:100%;
}

#mytable td {
padding:3px;
}

正在编辑,然后看到其他海报回复。所以是的,他已经确定了。

于 2012-11-27T17:02:27.333 回答