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 329 views
2 answers 299 views
1 answer 214 views
214 views asked Dec 18, 2018 by avibootz
4 answers 518 views
1 answer 291 views
2 answers 295 views
1 answer 227 views
...