How to horizontally center HTML DIV element in CSS

1 Answer

0 votes
.center-text {
   display: flex;
   justify-content: center;
}
<div class="center-text">  
  <h1>text text text</h1>
</div>

 



answered May 21, 2021 by avibootz

Related questions

2 answers 331 views
2 answers 306 views
1 answer 217 views
217 views asked Dec 18, 2018 by avibootz
4 answers 521 views
1 answer 293 views
2 answers 299 views
1 answer 229 views
...