Answers for "how to place the div class text in center in html"

CSS
44

css center image

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on November-28-2019
21

how to center text in css

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

Code answers related to "how to place the div class text in center in html"

Browse Popular Code Answers by Language