How can I horizontally align my divs?

前端 未结 9 886
野的像风
野的像风 2020-11-28 03:47

For some reason my divs won\'t center horizontally in a containing div:

9条回答
  •  臣服心动
    2020-11-28 04:31

    Another working example, using display: inline-block and text-align: center

    HTML:

    Hello
    World

    CSS:

    .container {
        ...
    }
    .row {
        text-align: center;
    }
    .btn {
        display: inline-block;
        margin-right: 6px;
        background-color: #EEE;
    }
    .clear {
        clear: both;
    }
    

    Fiddle: http://jsfiddle.net/fNvgS/

提交回复
热议问题