博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP的分页
阅读量:5296 次
发布时间:2019-06-14

本文共 1310 字,大约阅读时间需要 4 分钟。

 

页面的效果 

 

页面的css

 

1 @CHARSET "UTF-8"; 2 *{ 3     margin:0; 4     padding:0; 5 } 6 body{ 7     width:800px;     8     margin:0 auto; 9     border:1px solid green;10 }11 #content ul{
12 background:gray;13 width:300px;14 height:400px;15 list-style-type:none;16 }17 #content ul li{
18 width:250px;19 height:20px;20 line-height:20px;21 background:orange;22 margin-top:2px;23 }24 25 #fenye ul{
26 list-style-type:none;27 }28 #fenye li{
29 width:20px;30 height:20px;31 text-align:center;32 border:1px solid red;33 margin-right:2px;34 float:left;35 }36 #fenye ul li a{
37 text-decoration:none;38 display:block;39 width:20px;40 height:20px;41 line-height:20px;42 background:orange; 43 color:black;44 }45 #fenye ul li a:hover{
46 cursor:pointer;47 }

 

 

 

页面的主体部

 

1 
55 56 57 58
59 分页60
61 62 63
64
    65
    66
  • 67
    68
69 70
71
72
80
81 82

 

 

 

 

转载于:https://www.cnblogs.com/changshaoshuai/p/3285935.html

你可能感兴趣的文章
HTML基础
查看>>
RPD Volume 172 Issue 1-3 December 2016 评论01
查看>>
MyBatis foreach标签的用法
查看>>
线程池原理以及自定义线程池
查看>>
Jmeter多机并发压测IP地址问题
查看>>
git使用教程
查看>>
composer错误_Content-Length mismatch, received 84697 bytes out of the expected..
查看>>
Lua 下实现一个简单的消息队列
查看>>
Python中的类
查看>>
Node.js 解析gzip网页(https)
查看>>
python笔记一:python初步
查看>>
Selenium启动Chrome时,加载用户配置文件
查看>>
LeetCode208:Implement Trie (Prefix Tree)
查看>>
一句话木马
查看>>
linux process cycle
查看>>
fckeditor 添加上传附件功能
查看>>
实现用struts2流信息获得图片
查看>>
linux低权限执行高权限
查看>>
unsigned和signed
查看>>
filter的执行顺序
查看>>