Answers for "css align items at top of body"

CSS
3

inline block align center

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.child {
  display: inline-block;
}
Posted by: Guest on November-10-2020
8

how to align items in css

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

Browse Popular Code Answers by Language