Answers for "html center element in inline block"

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

how to center three inline block elements

text-align: center; on the parent element
Posted by: Guest on February-16-2022

Browse Popular Code Answers by Language