Top 3 Ways to align item to center ( responsively )
CoderZ90

CoderZ90 @official_fire

Joined:
Jul 15, 2021

Top 3 Ways to align item to center ( responsively )

Publish Date: Jul 15 '21
13 2

Hello 👋 Guys This is my first blog I am writing hope you found it useful and helpful. So in this blog we are going to learn how to center any item to the center responsively.

The most popular way to center is using flex in which you just need 3 lines of code to center it

Number One:-

 .center-item {
    display: flex;
    align-item: center;
    justify-content: center;
 }
Enter fullscreen mode Exit fullscreen mode

This is method just uses 3 lines of CSS codes and BOOM! 🌟 your item is now centered Horizontally and vertically in the webpage ( responsively )

Now second way is using position absolute method in this method the parent element should have position: relative and then the item you are centering should have position: absolute to center it

Number Two:

 .parent-element {
    position: relative;
 }

 .center-item-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }
Enter fullscreen mode Exit fullscreen mode

👆 Here you see that the parent element have position relative to it and the center item ( the item we need to center ) has position absolute if you not put this then it will not work

Now if you want to see how to center the item to center by using just 2 lines of codes, then here it is 😊

 .center-item-container {
   display: grid;
   place-items: center;
 }
Enter fullscreen mode Exit fullscreen mode

Thankyou!🥰 For Giving your time and reading this blog hope you found it useful i also have my own Youtube channel named Coding Fire please subscribe -

https://youtube.com/c/Codingfire?sub_confirmation=1

Comments 2 total

  • CoderZ90
    CoderZ90Jul 15, 2021

    Hope you found this POST Helpful and learned something new 😊 Thankyou for giving your time and reading this 🌟💖...

  • CoderZ90
    CoderZ90Jul 16, 2021

    I also have my own Youtube channel named Coding Fire please subscribe -

    youtube.com/c/Codingfire?sub_confi...

Add comment