Answers for "css place content center"

CSS
1

center a cpontent css

.center_me {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on January-05-2021
0

place-content css property

This property is a shorthand for the following CSS properties:
1-align-content
2-justify-content

Possible values => start|flex-start|end|flex-end|right|left|center|
space-around|space-between|space-evenly|baseline|stretch
Posted by: Guest on November-10-2020

Browse Popular Code Answers by Language