摘要: 固定宽度的元素水平居中只需要margin-left:auto;margin-right:auto;换成margin:0 auto;也是一样的今天给我用的jqPagination分页插件实现水平居中的时候发现不行,看.jqpagination的css才发现它有个float:left;最后在stackoverflow上看到一个老外也是跟我一样的问题,解决方案如下:给pagination的div加上display: inline-block;float: none;然后在其父元素上加上text-align:center;大功告成啦 阅读全文
posted @ 2014-04-02 09:54 江海不系舟 阅读(753) 评论(0) 推荐(0) 编辑