Answers for "put text in the center of the page html"

1

header center

div {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: blue;
}

text {
  background: orange;
}

<div>
   <text>Centered horizontally and vertically</text>
</div>
Posted by: Guest on December-03-2020
7

center text in div container

text-align: center
Posted by: Guest on June-01-2020
0

how to put text in the middle of a page html

<center>text</center>
Posted by: Guest on March-20-2021

Code answers related to "put text in the center of the page html"

Browse Popular Code Answers by Language