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 308 views
2 answers 282 views
1 answer 207 views
207 views asked Dec 18, 2018 by avibootz
4 answers 497 views
1 answer 272 views
2 answers 274 views
1 answer 216 views
...