|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当然空口无凭,下面我们就让大家看一下Div+CSS在页面中达到的效果。
之前小A曾写了以下面如许一个分页款式,事先只写一个左对齐,由于当对li利用float:left;以后,就主动左对齐了,假如想让对齐到父窗口右边,在li上利用float:right;的话会利用各个li倒序分列。明天俄然间想到在父容器上加上float:right;是否是就对刘右边了,一试还真行。为了看分明,我把父容器加上了背景致。
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>分页款式www.ckuyun.com</title><styletype="text/css">*{margin:0;padding:0;}body{font-size:12px;font-family:Verdana;}a{color:#333;text-decoration:none;}ul{list-style:none;}#pagelist{width:600px;margin:30pxauto;padding:6px0px;height:20px;background:#ccc;}#pagelistulli{float:left;border:1pxsolid#5d9cdf;height:20px;line-height:20px;margin:0px2px;}#pagelistullia,.pageinfo{display:block;padding:0px6px;background:#e6f2fe;}.pageinfo{color:#555;}.current{background:#a9d2ff;display:block;padding:0px6px;font-weight:bold;}</style></head><body><divid="pagelist"><ul><li><ahref="#">首页</a></li><li><ahref="#">上页</a></li><li><ahref="#">1</a></li><li><ahref="#">2</a></li><liclass="current">3</li><li><ahref="#">4</a></li><li><ahref="#">5</a></li><li><ahref="#">下页</a></li><li><ahref="#">尾页</a></li><liclass="pageinfo">第3页</li><liclass="pageinfo">共8页</li></ul></div></body></html>
尺度之路www.ckuyun.com提醒:能够先修正部分代码后再运转
右边对齐:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>分页款式www.ckuyun.com</title><styletype="text/css">*{margin:0;padding:0;}body{font-size:12px;font-family:Verdana;}a{color:#333;text-decoration:none;}ul{list-style:none;}#pagelist{width:600px;margin:30pxauto;padding:6px0px;height:20px;background:#ccc;}#pagelistul{float:right;}#pagelistulli{float:left;border:1pxsolid#5d9cdf;height:20px;line-height:20px;margin:0px2px;}#pagelistullia,.pageinfo{display:block;padding:0px6px;background:#e6f2fe;}.pageinfo{color:#555;}.current{background:#a9d2ff;display:block;padding:0px6px;font-weight:bold;}</style></head><body><divid="pagelist"><ul><li><ahref="#">首页</a></li><li><ahref="#">上页</a></li><li><ahref="#">1</a></li><li><ahref="#">2</a></li><liclass="current">3</li><li><ahref="#">4</a></li><li><ahref="#">5</a></li><li><ahref="#">下页</a></li><li><ahref="#">尾页</a></li><liclass="pageinfo">第3页</li><liclass="pageinfo">共8页</li></ul></div></body></html>
尺度之路www.ckuyun.com提醒:能够先修正部分代码后再运转
以下的内容是一位网友的DIVCSS编码笔记,是值得大家学习的,在实际工作与开发中,将工作中的点滴记录下来,回首这些过往,你也会收获很多 |
|