Answers for "how to align item in center by both side in css by 3 lines of code"

CSS
8

how to align items in css

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

Code answers related to "how to align item in center by both side in css by 3 lines of code"

Browse Popular Code Answers by Language