Answers for "how to align inline"

CSS
4

inline block align center

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

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

move the element to top in inline block div

vertical-align: top;
Posted by: Guest on June-27-2020

Code answers related to "how to align inline"

Browse Popular Code Answers by Language