Home  >  Article  >  Web Front-end  >  CSS justify-content property of Flexible flexible box model

CSS justify-content property of Flexible flexible box model

高洛峰
高洛峰Original
2017-02-23 09:51:331888browse


Example

Leave space around items in the e388a4556c0f65e1904146cc1a846bee element of a flexbox object:

  1. p

  2. ##{

  3. display: flex;

  4. justify -content: space-around;

  5. }

  6. 
    
    
    
    手册网(www.shouce.ren)
    
    
    
    
    

    注意: Internet Explorer 10 及更早版本浏览器不支持 justify-content 属性。

    注意: Safari 6.1 及更新版本通过 -webkit-justify-content 属性支持该属性。

Effect preview


Browser support

The number in the table indicates the version number of the first browser that supports this attribute.

The number immediately following -webkit-, -ms- or -moz- is the first version that supports this prefix attribute.

Attributesjustify-content29.011.028.09.017.0

Definition and usage

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).

21.0 -webkit-
18.0 -moz-
6.1 -webkit-
##Inheritance: NoCan be animated: No. Please refer to Version: CSS3JavaScript Syntax:

 


CSS 语法


justify-content: flex-start|flex-end|center|space-between|space-around|initial|inherit;

Attribute value

Default value: flex-start
CSS3 animation properties, CSS3 animation examples.
object. style.justifyContent="space-between" Effect preview
ValueDescriptionTest
##flex-startdefault 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
centerThe 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
##initialSet this property to its default value. See initial.Effect preview
##inheritInherits 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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn