Center element
-
I’m trying to center some content in the center and middle of the page, but looks like the width is not filling.
am I doing something wrong here, or is this just not possible?
<div class="row gutter items-center"> <div> <h1 class="text-center">HELLO</h1> </div> </div>
-
<div class="text-center"> <h1>HELLO</h1> </div>
?