zoukankan
html css js c++ java
一个分页栏的样式
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>分页栏</title> <style type="text/css"> /* Page CSS */ body, html { background: #333; } body { padding: 1em; } h1 { color: #DDD; font-size: 2em; } .back { color: #DDF; display: block; margin: 0 auto; padding: 0.5em; } #wrapper { border: 1px solid #999; background: #FFF; padding: 1em; text-align: center; 500px; } /* Widget CSS */ .audible { left: -999em; position: absolute; } ul { display: inline; position: relative; } li { border- 0; display: inline; margin: 0 2px; } li a, .prev, .next { border: 1px solid #EEE; color: #369; padding: 2px 5px; text-decoration: none; } li a:hover, a:hover .prev, a:hover .next, li a:focus, a:focus .prev, a:focus .next { background: #0063DC; color: #FFF; border-color: #FFF; } .prev { position: absolute; left: -7em; top: -3px; } .prev:before { content: "← "; } .next { position: absolute; right: -5em; top: -3px; } .next:after { content: " →"; } p { border: 1px solid #EEE; color: #FF0084; display: inline; padding: 2px 4px; } ul, li, a, p { /** * @HACK: The `ul` needs "layout" in IE. */ _zoom: 1; } /** * @HACK: The `.prev` and `.next` spans apparently ignore the * link's padding in IE. The left/right positions also * ought be adjusted, since they don't get the generated * arrows. */ .prev, .next { _top: 0px; } .prev { _left: -5em; } .next { _right: -4em; } </style> </head> <body> <div id="wrapper"> <p id="paginglabel" class="audible">Example Pagination</p> <ul role="navigation" aria-labelledby="paginglabel"> <li><a href="#page1"><span class="audible">Example Page</span>1</a></li> <li><a href="#page2" rel="prev"><span class="prev">Previous<span class="audible">: Example Page</span></span>2</a></li> <li><p><span class="audible">You're currently reading Example page </span>3</p></li> <li><a href="#page4" rel="next"><span class="next">Next<span class="audible">: Example Page</span></span>4</a></li> <li><a href="#page5"><span class="audible">Example Page </span>5</a></li> </ul> </div> </body> </html>
运行代码
机器瞎学/数据掩埋/模式混淆/人工智障/深度遗忘/神经掉线/计算机幻觉/专注单身二十五年
查看全文
相关阅读:
Android MediaScanner 详尽分析
你要清楚的东西
Centos下搭建Apache+mysql+php
Centos 安装MySQL全过程
sdk platform tools is missing please user the sdk manager to install it
尚书令
文字
ubuntu下mysql配置
学习Android开发,配置环境,
Sphinx全文索引安装教程
原文地址:https://www.cnblogs.com/rubylouvre/p/2000039.html
最新文章
spring AOP(3)
数据结构 串的模式匹配算法:BF和 KMP算法
图的应用详解数据结构
MVC 三层总结
error_reporting(E_ALL ^ E_NOTICE);
数据结构线性表
回溯法 数据结构与算法
二叉树遍历 数据结构
【Mezzanine迁移SAE】 实现Blog example Done
Installing PEAR and PHPUnit on WAMP
热门文章
android操作sdcard中的多媒体文件(一)——音乐列表的制作
android操作sdcard中的多媒体文件(二)——音乐列表的更新
Android音乐编程:管理音频焦点
MediaScanner与音乐信息扫描==
数据结构栈和队列
入职一周年小结
图的遍历 数据结构
禁用php函数的设置
The surface has been released 异常
晒晒我的linux alias文件【不定期更新】
Copyright © 2011-2022 走看看