PHP 게시판 페이징 CSS 정렬 문제
흰꽃
게시판 페이징 간의 간격이 맞지않아 수정하려 하는데,제가 코더가 아니라서 방법을 모르겠습니다.
이전버튼 과 11 다음버튼과 20 간격이 일치하지 않습니다.
소스는 아래와 같습니다.
/* 페이지목록 */
.bottom_paginate {float:left;} .paginate {padding:20px 0;text-align:center;line-height:normal; clear:both;}
.paginate a,
.bottom_paginate a,
.bottom_paginate strong,
.paginate strong{display:inline-block;position:relative;margin:0 -2px;padding:0px 4px;font-weight:bold;font-size:12px; font-family:Tahoma, Sans-serif;color:#333;line-height:normal;text-decoration:none;vertical-align:center}
.paginate a:hover,
.paginate a:active,
.paginate a:focus,
.bottom_paginate a:hover,
.bottom_paginate a:active,
.bottom_paginate a:focus, {background-color:#f8f8f8;}
.paginate strong, .bottom_paginate strong {color:#e60000}
.paginate a.direction, .bottom_paginate a.direction {padding:0; margin:0 4px;}
방법을 잘모르겠네요.
도움이 필요합니다.
-
하루키
뭐..예를 들어서
a href=\#\ 11/a
a href=\#\12/a
이런 경우라면 띄어 쓰기 때문에 간격의 오차가 발생할 수 있어요
a href=\#\11/a a href=\#\12/a
와
a href=\#\11/aa href=\#\12/a
와 같은 경우도 마찬가지구요!
이게 아니라면 자세한 답변은 아랫 분이..