HTML5,Javascript,and jQuery 24-Hour Trainer(4)——初识CSS

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/abclixu123/article/details/48506109

HTML文件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset = "utf-8">
    <link rel="stylesheet" type="text/css" href="contacts.css">
    <title>
        Sugar's page
    </title>
</head> 
<body>
    <table>
        <thead>
            <tr>
                <th>Contact name</th>
                <th>Phone number</th>
                <th>Email address</th>
                <th>Company name</th>
                <th>Last contacted</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>William Smith</td>
                <td>555-642-7371</td>
                <td>[email protected]</td>
                <td>ACME Industries</td>
                <td>2014-10-21</td>
            </tr>
            <tr>
                <td>Bob Morris</td>
                <td>555-999-2991</td>
                <td>[email protected]</td>
                <td>ABC Corp</td>
                <td>2014-19-12</td>
            </tr>
        </tbody>
        <tfoot>
            <tr>
                <td colspan="5">2 contacts displayed</td>
            </tr>
        </tfoot>
        <caption>Sales leads</caption>
    </table>
</body>
</html>

CSS文件

body {
    font-family: Arial, Helvetica, sans-serif;
}

table, th, td {
    border: 1px solid black;
    padding: 5px;
    border-collapse: collapse;
}

thead {
    background: #3056A0;
    color: white;
}

table > caption {
    font-weight: bold;
}

tfoot {
    font-size: 0.75em;
    text-align: right;
}

tbody tr:nth-child(even) {
    background: #E6E6F5;    
}

输出结果:

这里写图片描述

猜你喜欢

转载自blog.csdn.net/abclixu123/article/details/48506109