How to center horizontal table-cell

前端 未结 4 1329
后悔当初
后悔当初 2020-12-16 11:03

I want the Content A, Content B, and Content C columns to be horizontally centered. I have this code been trying to add

http://jsfiddle.net/hsX5q/24/

HTML:m

4条回答
  •  Happy的楠姐
    2020-12-16 11:46

    If you add text-align: center to the declarations for .columns-container then they align centrally:

    .columns-container {
        display: table-cell;
        height: 100%;
        width:600px;
        text-align: center;
    }
    

    /*************************
     * Sticky footer hack
     * Source: http://pixelsvsbytes.com/blog/2011/09/sticky-css-footers-the-flexible-way/
     ************************/
    
    /* Stretching all container's parents to full height */
    
    html,
    body {
      height: 100%;
      margin: 0;
      padding: 0;
    }
    /* Setting the container to be a table with maximum width and height */
    
    #container {
      display: table;
      height: 100%;
      width: 100%;
    }
    /* All sections (container's children) should be table rows with minimal height */
    
    .section {
      display: table-row;
      height: 1px;
    }
    /* The last-but-one section should be stretched to automatic height */
    
    .section.expand {
      height: auto;
    }
    /*************************
     * Full height columns
     ************************/
    
    /* We need one extra container, setting it to full width */
    
    .columns-container {
    display: table-cell;
    height: 100%;
    width:600px;
    text-align: center;
    }
    /* Creating columns */
    
    .column {
      /* The float:left won't work for Chrome for some reason, so inline-block */
      display: inline-block;
      /* for this to work, the .column elements should have NO SPACE BETWEEN THEM */
      vertical-align: top;
      height: 100%;
      width: 100px;
    }
    /****************************************************************
     * Just some coloring so that we're able to see height of columns
     ****************************************************************/
    
    header {
      background-color: yellow;
    }
    #a {
      background-color: pink;
    }
    #b {
      background-color: lightgreen;
    }
    #c {
      background-color: lightblue;
    }
    footer {
      background-color: purple;
    }
    foo

    Contents A

    Contents B

    Contents C

    bar

    This does, though, require that you reset the .column elements to text-align: left (assuming you want them left-aligned, obviously (JS Fiddle demo).

提交回复
热议问题