How To Horizontally Center In Css

Centering elements horizontally in CSS is a common task for web designers and developers. There are several methods to achieve this, and in this blog post, we’ll explore some of the most popular and easy-to-use techniques for centering elements in CSS.

1. Centering Inline or Inline-Block Elements

For inline or inline-block elements (like <span>, <a>, or <img>), one of the simplest ways to center them is by using the text-align property on their parent element.

    <style>
        .center-inline {
            text-align: center;
        }
    </style>
    

Now, any inline or inline-block elements inside an element with the center-inline class will be centered horizontally:

    <div class="center-inline">
        <img src="example-image.jpg" alt="An example image">
    </div>
    

2. Centering Block Elements with Auto Margins

For block-level elements (like <div>, <section>, or <article>), you can center them horizontally by using auto margins. The element should have a specified width and the left and right margins should be set to auto:

    <style>
        .center-block {
            margin-left: auto;
            margin-right: auto;
            width: 50%;
        }
    </style>
    

Now, any block element with the center-block class will be centered horizontally:

    <div class="center-block">
        <p>This block element is centered horizontally.</p>
    </div>
    

3. Centering Elements with Flexbox

Flexbox is a powerful and flexible layout module in CSS that can be used to center elements both horizontally and vertically. To center an element horizontally using flexbox, you need to set the parent element’s display property to flex and use the justify-content property with a value of center:

    <style>
        .center-flexbox {
            display: flex;
            justify-content: center;
        }
    </style>
    

Now, any element inside an element with the center-flexbox class will be centered horizontally:

    <div class="center-flexbox">
        <p>This element is centered horizontally using Flexbox.</p>
    </div>
    

4. Centering Elements with CSS Grid

CSS Grid is another powerful layout module that can be used to center elements both horizontally and vertically. To center an element horizontally using CSS Grid, you need to set the parent element’s display property to grid and use the justify-items property with a value of center:

    <style>
        .center-grid {
            display: grid;
            justify-items: center;
        }
    </style>
    

Now, any element inside an element with the center-grid class will be centered horizontally:

    <div class="center-grid">
        <p>This element is centered horizontally using CSS Grid.</p>
    </div>
    

Conclusion

In this blog post, we’ve explored four popular techniques for centering elements horizontally in CSS: using the text-align property for inline elements, auto margins for block elements, and Flexbox or CSS Grid for both inline and block elements. Depending on your layout requirements and browser support, any of these methods can be suitable for horizontally centering elements on your web page.