Answers for "how to center align all elements in a html page"

CSS
89

center a div in css

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

center a cpontent css

.center_me {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on January-05-2021

Code answers related to "how to center align all elements in a html page"

Browse Popular Code Answers by Language