分页

作者: BaiBao丶 | 来源:发表于2018-11-30 10:10 被阅读0次
    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
    <meta charset="UTF-8">
    <title>分页</title>
    <style type="text/css">
    *{
    margin: 0;
    padding: 0;
    }
    .bai{
    width: 960px;
    height: 42px;
    border: 1px solid #fcc5dd;
    margin: 100px auto;
    }
    .bai2{
    width: 500px;
    height: 32px;
    margin-left: 220px;
    padding-top: 8px;
    }
    .bai2 a{
    padding: 5px 10px;
    background: #f47e7e;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    margin-left: 5px;
    font-weight: 600;
    }
    .bai a:hover{
    background: #fba2a2;
    color: #fff;
    }
    </style>
    </head>
    <body>
    <div class="bai">
    <div class="bai2">
    <a href="#">上一页</a>
    <a href="#">1</a>
    <a href="#">2</a>
    <a href="#">3</a>
    <a href="#">4</a>
    ....
    <a href="#">17</a>
    <a href="#">18</a>
    <a href="#">19</a>
    <a href="#">20</a>
    <a href="#">下一页</a>
    </div>
    </div>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:分页

          本文链接:https://www.haomeiwen.com/subject/teuccqtx.html