CSS justify-content property of Flexible flexible box model

高洛峰
Release: 2017-02-23 09:51:33
Original
1938 people have browsed it


Example

Leave space around items in the

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 属性支持该属性。

    Copy after login
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.


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

Attributes justify-content 29.0 11.0 28.0 9.0 17.0
21.0 -webkit-
18.0 -moz-
6.1 -webkit-


CSS 语法


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

Attribute value

##Inheritance: No Can be animated: No. Please refer to Version: CSS3 JavaScript Syntax:
Default value: flex-start
CSS3 animation properties, CSS3 animation examples.
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!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!