How do I center floated elements?

前端 未结 12 2802
谎友^
谎友^ 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:55

    I think the best way is using margin instead of display.

    I.e.:

    .pagination a {
        margin-left: auto;
        margin-right: auto;
        width: 30px;
        height: 30px;    
        background: url(/images/structure/pagination-button.png);
    }
    

    Check the result and the code:

    http://cssdeck.com/labs/d9d6ydif

提交回复
热议问题