1,先实现一个最简单的页码栏:
实现效果如图:
代码如下:
页码导航条
.page-bar {
padding: 0;
margin: 0;
width: 348px;
height: 30px;
border: 1px solid #000;
}
.page-bar li{
padding: 0;
margin: 0;
border-right: 1px solid #000;
list-style: none;
float: left;
width: 28px;
height: 30px;
text-align: center;
}
.page-bar .page-next{
width: 57px;
height: 30px;
border-right: NONE;
}
.page-bar a {
text-decoration: none;
font-size: 16px;
line-height: 30px;
}