圆点无法margin auto自动居中
//css .main{ width: 1200px; height: 460px; position: relative; } .img{ width: 999999px; height: 460px; position: absolute; top: 0; left: 0; } .img img{ float: left; } .index{ position: absolute; bottom: 5px; text-align: center; margin:0 auto; width: 75px; } .index ul{ list-style-type: none; overflow: hidden; padding: 0; } .index li{ float: left; margin-left: 5px; width: 10px; height: 10px; border-radius: 50%; background-color: rgba(100,100,100,0.3); }
<!DOCTYPE html> <html dir="ltr"> <head> <meta charset="utf-8"> <title>jq轮播</title> <link rel="stylesheet" href="./css/master.css"> </head> <body> <div class="main"> <div class="img"> <img src="./img/1.jpg" alt=""> <img src="img/2.jpg" alt=""> <img src="img/3.jpg" alt=""> <img src="img/4.jpg" alt=""> <img src="img/5.jpg" alt=""> </div> <div class="index"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> <div class="left"> <img src="" alt=""> </div> <div class="right"> <img src="" alt=""> </div> </div> <script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script> <script src="./js/a.js"></script> </body> </html>
0
收起
正在回答
1回答
因为圆点整体设置定位 ,所以margin:0 auto不能实现居中了 . 建议如下 修改:
希望能够帮到你 ,祝学习愉快 ,望采纳
前端小白入门系列课程
- 参与学习 人
- 提交作业 11218 份
- 解答问题 36713 个
从一个不会编程的小白到一个老司机是需要过程的,首先得入门,学习基础知识,然后才能进阶,最后再到精通,本专题是你走进前端世界的不二选择!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星