Answers for "How to align items in the center in css"

CSS
8

how to align items in css

div
{
  display:flex;
  align-items:center;
  justify-content:center;
  
}
Posted by: Guest on August-06-2020
0

css align-items center

div {
  display: flex;
  align-items: center;
}
Posted by: Guest on April-16-2021

Code answers related to "How to align items in the center in css"

Browse Popular Code Answers by Language