博客列表 >第六章 3.22日作业 CSS表格设置

第六章 3.22日作业 CSS表格设置

薛光举的博客
薛光举的博客原创
2018年03月26日 16:17:19697浏览

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>3月22日第六次作业.CSS表格设置</title>

    <style>

        table,th,td {

            border: 1px solid #333;

        }

        table {

            border-collapse: collapse;

            text-align: center;

            width: 60%;

            margin: 50px auto;

            box-shadow: 4px 4px 4px #888;

            background-repeat: no-repeat;

            background-size: cover;

        }

        table caption {

            font-size: 1.6em;

            font-weight: bolder;

            margin-bottom: 30px;

        }

        th,td {

            padding: 10px;

        }

        td img {

            border-radius: 50%;

            box-shadow: 2px 2px 2px #888;

        }

        th {

            background-color: rgba(155,155,0,0.3);

            color: white;

        }

        .green {

            color: darkgreen;

            font-weight: bolder;

            font-size: 1.2em;

        }

    </style>

</head>

<body>

<table>

    <caption>&sect;&nbsp;学生成绩登记册&nbsp;&sect;</caption>

    <tr>

        <th>学(籍)号</th>

        <th>学生姓名</th>

        <th>出勤记录</th>

        <th>平时记录</th>

        <th>平时考试</th>

        <th>综合评定成绩</th>

        <th>学分</th>

    </tr>

    <tr>

        <td>1</td>

        <td>王重阳</td>

        <td> </td>

        <td> </td>

        <td> </td>

        <td> </td>

        <td> </td>

    </tr>

</table>

</body>

</html>


6.jpg

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议