Follow

Follow
4 Ways to Center that <div/>

Photo by Helio Dilolwa on Unsplash

4 Ways to Center that <div/>

Syed Jafer K's photo
Syed Jafer K
·Oct 17, 2022·

1 min read

Play this article

1. Using Flex Box

.parent {
    display: flex;
    justify-content: center;
    align-items: center;
}

2. Using Margin

.child {
    margin: auto;
}

3. Using Grid

.parent {
   display: grid;
   place-content: center;
}

4. Using Positions

.parent {
    position: relative;
}

.child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate (-50%, -50%);
}
 
Share this