DeveloperBreeze

CSS: How to Center a Div Horizontally and Vertically

css
/* Flexbox approach */
.center-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

/* Grid approach */
.center-div-grid {
    display: grid;
    place-items: center;
    height: 100vh;
}

Continue Reading

Handpicked posts just for you — based on your current read.

Discussion 0

Please sign in to join the discussion.

No comments yet. Start the discussion!