Center Text in just Two Lines of CSS

Center Text in just Two Lines of CSS

ยท

1 min read

Using Flexbox

/* Method 1 - Centering DIV using Flexbox */
.div1 h1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

Using Grid

/* Method 2 - Center DIV using Grid */
.div2 h1{
    display: grid;
    place-content: center;
}

So simple ๐Ÿ˜€

And make sure to center(align-mind: center)๐Ÿ˜œ your focus towards my YouTube Channel

ย