A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 南国之南 中级黑马   /  2016-7-15 20:55  /  1706 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<!DOCTYPE html>
<html lang="en">
<head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,initial-seale=1">
        <title>模板页</title>
        <style>
                h1{
                        font-size: 30px;
                        text-align: center;
                        color: #666;
                }
                table.responsive{
                        width: 98%;
                        margin:0 auto;
                        border: 1px solid #666;
                        box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
                }
                table.responsive th,table.responsive td{
                        border: 1px solid #666;
                        padding: .5em 1em;
                }
                table.responsive th{
                        background-color: #35B558;
                }
                table.responsive .actions a{
                        color:#ff5c00;
                        text-decoration: none;
                        padding:0 4px;
                }
                table.responsive .number,table.responsive .actions{
                        text-align: center;
                }
                @media (max-width: 480px){
                        table.responsive{
                                box-shadow: none;
                                border: none;
                        }
                        table.responsive thead{
                                display: none;
                        }
                        table.responsive tr,table.responsive td{
                                display: block;
                                border: none;
                                position: relative;
                        }
                        table.responsive tr{
                                margin-bottom: 1em;
                                box-shadow: 0 1px 10px 0 rgba(0,0,0,.2);
                        }
                        table.responsive .number{
                                background-color: #35B558;
                                text-align: left;
                                padding-left: 28%;
                        }
                        table.responsive .number::before{
                                content: "课程序号";
                                position: absolute;
                                left:.5em;
                                top: .5em;
                                font-weight: bold;
                        }
                        table.responsive .name{
                                text-align: left;
                                padding-left: 28%;
                        }
                        table.responsive .name::before{
                                content: "课程名称";
                                position: absolute;
                                left:.5em;
                                top: .5em;
                                font-weight: bold;
                        }
                        table.responsive .actions{
                                position: absolute;
                                right: 0px;
                                top: 0px;
                        }
                }
        </style>
</head>
<body >
          <h1>学院课程</h1>
          <table class="responsive">
                <thead>
                        <tr>
                                <th>课程序号</th>
                                <th>课程名称</th>
                                <th>课程操作</th>
                        </tr>
                </thead>
                <tbody>
                        <tr>
                                <td class="number">150406</td>
                                <td class="name">移动应用开发</td>
                                <td class="actions">
                                        <a href="#">修改</a>        <a href="del">删除</a>
                                </td>
                        </tr>
                </tbody>
                <tbody>
                        <tr>
                                <td class="number">150407</td>
                                <td class="name">Web前端开发</td>
                                <td class="actions">
                                        <a href="#">修改</a>        <a href="del">删除</a>
                                </td>
                        </tr>
                </tbody>
                <tbody>
                        <tr>
                                <td class="number">150408</td>
                                <td class="name">UI平面设计</td>
                                <td class="actions">
                                        <a href="#">修改</a>        <a href="del">删除</a>
                                </td>
                        </tr>
                </tbody>
                <tbody>
                        <tr>
                                <td class="number">150409</td>
                                <td class="name">深入了解AngularJS</td>
                                <td class="actions">
                                        <a href="#">修改</a>        <a href="del">删除</a>
                                </td>
                        </tr>
                </tbody>
          </table>
</body>
</html>

2 个回复

倒序浏览
好高深的样子
回复 使用道具 举报

涉及到的东西很少,主要是都放一起了,看着就觉得有点多,其实不多
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马