css表格练习

来源:互联网 发布:linux send 返回值 编辑:程序博客网 时间:2024/05/22 12:09
<!DOCTYPE html><html><head>    <meta http-equiv="content-type" content="text/html;charset=utf-8"/>    <title>一个美丽的表格</title>    <style type="text/css">        table,thead,tr,td {            /* 设置边框样式 */            border: 1px solid green;            border-collapse:collapse;            width: 100%;        }        td {            width: 33%;            height:30px;                /* 设置字体 */              font-family:Arial, Helvetica, sans-serif;            /* 设置元素距离边框的距离 */            padding: 7px;        }        thead td {            color: white;            background-color: #A7C942;            /* 设置字体 */            font-family: 'Arial Black', Gadget, sans-serif;            padding: 12px;        }        .tr_1 {            background-color: white;        }        .tr_2 {            background-color: #eaf2d3;        }    </style></head><body>    <table>        <thead>            <tr>                <td class="th_1">Company</td>                <td class="th_2">Contact</td>                <td class="th_3">Country</td>            </tr>        </thead>        <tbody>            <tr class="tr_1">                <td>Apple</td>                <td>Steven Jobs</td>                <td>USA</td>            </tr>                   <tr class="tr_2">                <td>Baidu</td>                <td>Li YanHong</td>                <td>China</td>            </tr>            <tr class="tr_1">                <td>Google</td>                <td>Larry Page</td>                <td>USA</td>            </tr>            <tr class="tr_2">                <td>Lenovo</td>                <td>Liu Chuanzhi</td>                <td>China</td>            </tr>            <tr class="tr_1">                <td>Microsoft</td>                <td>Bill Gates</td>                <td>USA</td>            </tr>            <tr class="tr_2">                <td>Nokia</td>                <td>Stephen Elop</td>                <td>Finland</td>            </tr>        </tbody>    </table></body></html>

css表格练习

0 0
原创粉丝点击