Answers for "display inline css how to center"

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
0

how to center an ing with block display

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language