Leave space around items in the
element of a flexbox object:
p
##{
display:flex;
justify-content:space-around;
}
justify-content is used to set or retrieve the alignment of the flexible box element in the main axis (horizontal axis) direction.
Tip:Use the align-content property to align items on the cross axis (vertically).
29.0 | 21.0 -webkit- | 11.0
28.0 | 18.0 -moz- | 9.0
6.1 -webkit- | 17.0
justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;
Default value: | flex-start |
---|---|
No | |
No. Please refer to | CSS3 animation properties, CSS3 animation examples. |
CSS3 | |
object. style.justifyContent="space-between" Effect preview |
Value | Description | Test |
---|---|---|
##flex-start | default value. The item is at the beginning of the container. | Effect preview |
##flex-end | The item is at the end of the container. | Effect Preview |
center | The item is located in the center of the container. | Effect preview |
##space-between | Items are located in containers with white space between rows. | Effect preview |
space-around | # Items are placed in containers with white space before, between, and after each row. | Effect Preview |
##initial | Set this property to its default value. See initial. | Effect preview |
##inherit | Inherits this attribute from the parent element. See inherit. |
More articles related to CSS justify-content attribute of Flexible flexible box model Please pay attention to PHP Chinese website!