木子屋 Dnawo's BLOG

css设置table边框1px并居中显示

👤 dnawo 📅 2013-07-29 👁 7822 👍 0 💬 0 🔄 来源:本站原创
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>css设置table边框1px并居中显示-Mzwu.COM</title>
    <style type="text/css">
        table {
            margin: auto;
            width: 90%;
        }

        table, td {
            border: 1px solid #cccccc;
            border-collapse: collapse;
        }
    </style>
</head>

<body>
    <table>
        <tr>
            <td>名称</td>
            <td>域名</td>
        </tr>
        <tr>
            <td>百度</td>
            <td>http://www.baidu.com/</td>
        </tr>
        <tr>
            <td>谷歌</td>
            <td>http://www.google.com/</td>
        </tr>
    </table>
</body>
</html>

评论(0)

暂无评论。

验证码
评论需审核通过后显示
← 上一篇 为你的安卓手机应用加把锁:应用锁 下一篇 → WinRAR创建自解压文件并添加桌面快捷方式