css pagination for GridView
Posted
by nCdy
on Stack Overflow
See other posts from Stack Overflow
or by nCdy
Published on 2010-04-05T06:11:02Z
Indexed on
2010/04/05
6:13 UTC
Read the original article
Hit count: 298
my css :
/* for greed view */
.pagination {
font-size: 80%;
}
.pagination a {
text-decoration: none;
color: #15B;
}
.pagination a, .pagination span {
display: block;
float: left;
padding: 0.3em 0.5em;
margin-right: 5px;
margin-bottom: 5px;
}
.pagination .current {
background: #26B;
color: #fff;
border: solid 1px #AAE;
}
.pagination .current.prev, .pagination .current.next{
color:#999;
border-color:#999;
background:#fff;
}
but .pagination .current doesn't appears on current page and I can's see the border on it. What am I doing wrong ?
© Stack Overflow or respective owner