Answers for "centralize title html css"

CSS
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
6

how to center text in html

text-align: center;
Posted by: Guest on July-28-2020

Browse Popular Code Answers by Language