search
HomeWeb Front-endCSS TutorialLearn CSS3 flex layout, how to create a flexible web page layout?

Learn CSS3 flex layout, how to create a flexible web page layout?

Learn CSS3 flex layout, how to create a flexible web page layout?

In web design, layout plays a vital role. With a good layout, your webpage can look neater, more beautiful, and adapt to different screen sizes and devices. CSS3's flex layout provides a flexible and powerful way to create web page layout. This article will introduce what flex layout is and how to use it to create flexible web page layouts.

1. What is flex layout
Flex layout is a new layout method provided in CSS3, also known as flexible layout. It is based on the concepts of main axis and cross axis, and achieves flexible layout effects by setting a series of properties for the container and its internal elements. Through flex layout, we can easily achieve effects such as adaptive elements, center alignment, and even space distribution.

2. Flex container and flex item
In flex layout, there are two important concepts, namely flex container and flex item. A flex container is a parent element that contains a group of flex items. The attributes and values ​​of this parent element determine how the child elements are laid out. Flex items are child elements directly contained by the flex container.

3. Properties of flex container

  1. display: flex
    This is the first step to use flex layout. Just set the display property of the container to flex. Enable flex layout. It will arrange the elements inside the container on a row, and by default the elements will be sorted in the order they appear in the HTML.
  2. flex-direction
    This property determines how elements are arranged in the container. It has the following optional values:
  3. row: Horizontal direction, arranged from left to right (default value)
  4. row-reverse: Horizontal direction, arranged from right to left
  5. column: Vertical direction, arranged from top to bottom
  6. column-reverse: Vertical direction, arranged from bottom to top
  7. justify-content
    This attribute determines the position of the element on the main axis alignment on. It has the following optional values:
  8. flex-start: Aligned close to the start position of the main axis (default value)
  9. flex-end: Aligned close to the end position of the main axis
  10. center : Centered alignment
  11. space-between: Evenly divide the space on the main axis, with the first and last elements close to both sides of the container
  12. space-around: Evenly divide the space on the main axis, between each element and the first and last elements Equal distance from the container
  13. align-items
    This attribute determines the alignment of the element on the cross axis. It has the following optional values:
  14. flex-start: Alignment close to the starting position of the cross axis
  15. flex-end: Alignment close to the end position of the cross axis
  16. center: Centered alignment
  17. baseline: Align according to the baseline of the element
  18. stretch: Stretch the element to fill the cross-axis space

4. Properties of flex items

  1. flex-grow
    This property determines the scaling ratio of the flexible item in the remaining space. If the parent container has extra space, the value of the flex-grow property of each flex item will determine the proportion they are allocated. The default value is 0, which means no scaling.
  2. flex-shrink
    This property determines the shrinkage ratio of flexible items when there is insufficient space. If the parent container does not have enough space to accommodate all items, the value of the flex-shrink property of each flex item will determine the proportion by which they shrink. The default value is 1, which means equal proportional shrinkage.
  3. flex-basis
    This property determines the initial size of the flexible item in the main axis direction. It can be set to a specific value (such as pixels) or a percentage. The default value is auto, which automatically allocates the size based on the project content.
  4. align-self
    This property determines the alignment of a single item on the cross axis. It can override the container's align-items property. Its optional values ​​are the same as align-items.

5. Flexible web page layout example
The following is an example of web page layout created using flex layout:

<!DOCTYPE html>
<html>
<head>
    <style>
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header {
            width: 100%;
            height: 100px;
            background-color: #ccc;
        }

        .main {
            flex: 1;
            width: 100%;
            background-color: #eaeaea;
        }

        .sidebar {
            width: 200px;
            background-color: #ccc;
        }

        .content {
            flex-grow: 1;
            padding: 20px;
        }

        .footer {
            width: 100%;
            height: 50px;
            background-color: #ccc;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">Header</div>
        <div class="main">
            <div class="sidebar">Sidebar</div>
            <div class="content">Content</div>
        </div>
        <div class="footer">Footer</div>
    </div>
</body>
</html>

Using the above code, a flexible web page layout can be achieved, in which The head and bottom have a fixed height, and the middle part is divided into sidebar and content area. The middle part can be flexibly expanded according to the height of the content. By setting the flex attribute of each element and the alignment of the container, you can implement a web page layout that adapts to different screen sizes.

6. Summary
CSS3’s flex layout provides a flexible and powerful way to create web page layout. By flexibly using various properties of flex containers and flex items, you can easily achieve effects such as element adaptation, center alignment, and even space distribution. By learning and mastering flex layout, we can create more flexible, beautiful and adaptable web page layouts to different screen sizes and devices.

The above is the detailed content of Learn CSS3 flex layout, how to create a flexible web page layout?. For more information, please follow other related articles on the 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
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.