分页插件样式

<head>
    <meta charset="UTF-8">
    <title>11分页插件样式</title>

    <style>
        .page a, .prev-page, .next-page {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: #f7f7f7;
            border: 1px solid #ccc;
            text-decoration: none;
            text-align: center;
            line-height: 36px;
            color: #333333;
        }

        .page .prev-page, .page .next-page {
            width: auto;
            padding-left: 8px;
            padding-right: 8px;
        }
    </style>
</head>
<body>
    <div class="page">
        <a href="#" class="prev-page">&lt;&lt;上一页</a>
        <a href="#">2</a>
        <a href="#">3</a>
        <a href="#">4</a>
        <a href="#">5</a>
        <a href="#">6</a>
        <a href="#">7</a>
        <a href="#" class="next-page">&gt;&gt;下一页</a>
    </div>
</body>
</html>

 

posted @ 2023-06-04 18:15  时间羚羊  阅读(11)  评论(0编辑  收藏  举报