Search code examples
htmlcsslayoutalignmentcenter

How to center this grid layout with css?


I want to have the pinterest like items to be centered in the page.

my website: www.keto.hu picture

Thank you!!

images


Solution

  • Add width: 1210px to the following rule.

    #main-content #grid, #main-content #content {
        margin: 0px auto;
        width: 1210px;
    }
    

    For responsive width use percentage.

    #main-content #grid, #main-content #content {
        margin: 0px auto;
        width: 89.5%;
    }
    

    enter image description here