Answers for "how to display center div using flex"

CSS
18

css flex center

display: flex;
align-items: center;
justify-content: center;
Posted by: Guest on April-23-2020
2

center div css flex

section {
  width: 200px;
  border: 1px solid #2d2d2d;
  display: flex;
  justify-content: center;
}
Posted by: Guest on June-19-2020

Code answers related to "how to display center div using flex"

Browse Popular Code Answers by Language