Answers for "completely center text css"

CSS
10

css center

/* this will center all children within the parent element. */
.parent {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
}
Posted by: Guest on May-17-2020
21

how to center text in css

.class {
	text-align: center;
}
Posted by: Guest on February-15-2020

Browse Popular Code Answers by Language