How do I center text in the middle? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do I center text in the middle?

So, I know how to align text in the middle, you do it like this. selector { text-align: center } But how do I align it perfectly in the middle, like not right at the top, but in the center of the screen?

22nd Jul 2022, 6:30 PM
MyNameIsNotBob
MyNameIsNotBob - avatar
2 Answers
+ 6
Here is one way. <h1 class="centered"> Content </h1> .centered { position: fixed; top: 50%; left: 50%; margin-top: -50px; margin-left: -100px; }
22nd Jul 2022, 6:44 PM
Chris Coder
Chris Coder - avatar