How do I center floated elements?

前端 未结 12 2589
谎友^
谎友^ 2020-11-22 00:16

I\'m implementing pagination, and it needs to be centered. The problem is that the links need to be displayed as block, so they need to be floated. But then, text-alig

12条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-22 00:54

    Just adding

    left:15%; 
    

    into my css menu of

    #menu li {
    float: left;
    position:relative;
    left: 15%;
    list-style:none;
    }
    

    did the centering trick too

提交回复
热议问题