Answers for "how to center the text in div"

CSS
90

center a div in css

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on September-09-2020
3

css center text in div

/* For horizontal align: */
parent-element {text-align:center;}
/* For horizontal and vertical align: */
parent-element {position: relative;}
element-to-be-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* See https://www.w3schools.com/css/css_align.asp for more info */
Posted by: Guest on October-25-2020
7

center text in div container

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

how to center a text element

It's okay bro use text-align: center; or justify-content with flexbox it's a lifesaver
Posted by: Guest on March-04-2021

Browse Popular Code Answers by Language