DEV Community

Cover image for [EASY] How to center an object or Image using HTML and CSS flex | IT Rebels
kritik sah
kritik sah

Posted on

4 2

[EASY] How to center an object or Image using HTML and CSS flex | IT Rebels

How to center an element horizontally and vertically

Flexbox method

    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay