Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

奋力向前
Release: 2021-08-18 11:32:24
forward
2991 people have browsed it

In the previous article "In-depth analysis of the saved images implemented in the WeChat applet page (with code)", I will give you an understanding of the saved images implemented in the WeChat applet page. The following article will introduce how to use CSS3 to create a simple page layout. Interested friends can refer to it.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

Compatibility

In 2009, W3C proposed a new solution---- Flex layout can realize various page layouts simply, completely and responsively.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • Standard 1 only supports the old flexbox specification and does not support packaging.

  • Standard 2 only supports 2012 syntax

  • Standard 3 does not support flex-wrap, flex-flow or align-contentAttribute

  • Partial support for mark 4 is due to a large number of bugs (see known issues)

Concept

Flex is the abbreviation of Flexible Box, which means "flexible layout" and is used to provide maximum flexibility for box-shaped models.

Note that after setting to Flex layout, the float, clear and vertical-align attributes of child elements will be invalid.

Elements that adopt Flex layout are called Flex containers (flex container), referred to as "containers". All its child elements automatically become container members, called Flex items (flex item), referred to as "items".

Containers have two axes by default: the horizontal main axis (main axis) and the vertical cross axis (cross axis). The starting position of the main axis (the intersection with the border) is called main start, and the ending position is called main end; the starting position of the cross axis is called cross start, and the ending position It’s called cross end.

Items are arranged along the main axis by default. The main axis space occupied by a single project is called main size, and the cross axis space occupied by a single item is called cross size.

Container properties

The following 6 properties are set on the container.

  • flex-directionHorizontally or vertically arranged

  • flex-wrapWrap or not

  • flex-flowAbbreviation of the above 2 properties

  • justify-contentHorizontal alignment

  • align-itemsVertical alignment

  • ##align-contentMulti-line balanced distribution

flex-direction<strong></strong>Attribute

flex-directionDecided by the attribute The direction of the main axis (that is, the direction in which items are arranged). flex-directionrow | row-reverse | column | column-reverse;

  • row (default value): The main axis is horizontal and the starting point is at the left end.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • row-reverse: The main axis is horizontal and the starting point is at the right end.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • column: The main axis is vertical and the starting point is on the upper edge.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • column-reverse: The main axis is vertical, and the starting point is at the lower edge.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

flex-wrap

By default, items are arranged in one line (aka " axis").

flex-wrapAttribute definition, if one axis line cannot be arranged, how to wrap the line.

flex-wrap: nowrap | wrap | wrap-reverse;

  • nowrap (default): No line wrapping.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • wrap: Line wrap, first line at the top.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • wrap-reverse: Wrap, with the first line below.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

flex-flow

##flex-flowThe property is The abbreviation of the flex-direction attribute and the flex-wrap attribute. The default value is row nowrap.

justify-content<strong></strong> Properties (horizontal alignment)

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

  • flex-start (default): left-justified

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • ##flex-end

    : Right aligned

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • center

    :Center

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    # space-between
  • : Align both ends, and the spaces between items are equal.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    space-around
  • : Each item is equally spaced on both sides. Therefore, the space between items is twice as large as the space between items and the border.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

align-items

<strong>Properties (vertical alignment)</strong>align-items

Properties define how items are aligned on the cross axis.

align-items: flex-start | flex-end | center | baseline | stretch;

    flex-start
  • : The starting point of the cross axis Alignment.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    flex-end
  • : The end point alignment of the cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    center
  • : Align the midpoint of the cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    baseline
  • : The baseline alignment of the first line of text of the item.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    stretch
  • (default): If the item has no height set or is set to auto, it will Take up the entire height of the container.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

align-content

<strong>Properties</strong>align-content

The attribute defines the alignment of multiple axes. This property has no effect if the project has only one axis.

align-content: flex-start | flex-end | center | space-between | space-around | stretch;

    flex-start
  • : Aligned with the starting point of the cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    flex-end
  • : Align with the end point of the cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    center
  • : Aligned with the midpoint of the cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

    space-between
  • : Align with both ends of the cross axis, with even spacing between the axes distributed.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • space-around: Each axis is equally spaced on both sides. Therefore, the distance between the axes is twice as large as the distance between the axis and the frame.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

  • stretch (default value): The axis occupies the entire cross axis.

Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

Project attributes

That is, flex container, the attributes of all its child elements

  • order, sort

  • flex-grow, stretch

  • flex-shrink, extrusion

  • ##flex-basis, fixed size

  • flex, the abbreviation of grow shrink basis

  • ##align-self

    , rewrites the parent's align-itemsAlignment

order<strong></strong> Properties

order

The attribute defines the order in which items are sorted. The smaller the value, the higher the ranking. The default is 0.

<!-- order为-1 排在最前 -->
<div style="order:-1">3</div>
Copy after login
Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

flex-grow<strong></strong>Properties

flex-grow

The attribute defines the magnification ratio of the item. The default is 0, that is, if there is remaining space, it will not be enlarged. Is whether to stretch

<div   style="max-width:90%">1</div>
<div>1</div>
<div style="flex-grow:5">2</div>
<div style="flex-grow:1">1</div>
Copy after login
Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)If the

flex-grow

property of all items is 1, they will equally divide the remaining space (if any ). If one item's flex-grow property is 2 and all other items are 1, the former will occupy twice as much remaining space as the other items.

flex-shrink<strong></strong>Property

flex-shrink

Property defines the shrinkage ratio of the item , defaults to 1, i.e. if there is insufficient space, the item will shrink. When it cannot be discharged, it will be squeezed and deformed, and it will be discharged even to death. Negative values ​​are not valid for this property

<div   style="max-width:90%">0</div>
Copy after login
Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

flex-basis<strong></strong>Property The

flex-basis

property defines the main axis space (main size) that the item occupies before allocating excess space. The browser uses this attribute to calculate whether there is extra space on the main axis. Its default value is auto, which is the original size of the project.

<div   style="max-width:90%">100px</div>
Copy after login
Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)

flex <strong></strong>Attributes

flex

Attributes It is the abbreviation of flex-grow, flex-shrink and flex-basis. The default value is 0 1 auto. The last two properties are optional. This attribute has two shortcut values: auto (1 1 auto) and none (0 0 auto). It is recommended to give priority to using this attribute instead of writing three separate attributes separately, because the browser will infer the relevant values.

.test {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100px;
}

/* 等同于 */
.test {
    flex: 1 1 100px;
}

`
Copy after login

align-self<strong></strong>Attribute

align-self

Attribute allows a single item to have the same If other items have different alignments, you can override the align-items attribute. The default value is auto, which means inheriting the align-items attribute of the parent element. If there is no parent element, it is equivalent to stretch.

align-self

: auto | flex-start | flex-end | center | baseline | stretch;

<div style="align-self:flex-end;">5</div>
Copy after login
Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation)Recommended learning :

CSS3 video tutorial

The above is the detailed content of Teach you step by step how to use CSS3 to create a simple page layout (detailed code explanation). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:chuchur.com
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 Articles by Author
Popular Tutorials
More>
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!