美文网首页
flex布局

flex布局

作者: crazysungogogo | 来源:发表于2020-09-25 14:21 被阅读0次

flex父容器

display:flex // block级
display:inline-flex //inline级
flex-direction:row|column //主轴方向
flex-wrap:nowrap|wrap //换行方式
flex-flow:row wrap ; //含义 flex-direction+flex-wrap
justify-content:flex-start|flex-end|center|space-between|space-around|initial|inherit; // 子元素排列方式
align-items:stretch|center|flex-start|flex-end|baseline|initial|inherit; //交叉方向样式
align-content:center|flex-start|flex-end //多行元素看成一个整体 多行才有效果 单行用align-items

flex子元素

order 排列顺序 从小到大排列
align-self 覆盖父元素align-items 特殊处理
flex-grow 在主轴方向有剩余空间 沿主轴方向填满宽度
flex-shrink 收缩 超出主轴方向 超出部分收缩
flex-basis 初始大小

<!DOCTYPE html>
<html lang="en">

<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Flex</title>
 <style>
   .container {
     display: flex;
     flex-direction: row;
     flex-wrap:nowrap;
     justify-content: center;
     align-items: center;
     align-content: flex-start;
     width: 400px;
     height: 400px;
     margin: 20px 20px 20px 20px;
     border: 3px solid black;
   }

   .item:nth-child(1) {
     order: 0;
     align-self: flex-start;
    
     width: 100px;
     height: 100px;
     color: white;
     background-color: #000;
   }

   .item:nth-child(2) {
     width: 100px;
     height: 100px;
     color: white;
     background-color: #00f;
   }

   .item:nth-child(3) {
     width: 100px;
     height: 100px;
     color: white;
     background-color: #0ff;
   }

   .item:nth-child(4) {
     width: 100px;
     height: 100px;
     color: white;
     background-color: #eee;
   }

   .item:nth-child(5) {
     height: 100px;
     color: white;
     width: 100px;
     background-color: #f0f;
   }
 </style>
</head>

<body>
 <div class="container">
   <div class="item">1</div>
   <div class="item">2</div>
   <div class="item">3</div>
   <div class="item">4</div>
   <div class="item">5</div>
 </div>
</body>

</html>

相关文章

  • flex布局

    认识flex布局 flex布局(Flexible 布局,弹性布局)开启了flex布局的元素叫flex contai...

  • 初见FLEX

    FLEX布局 一种新的布局方式,flex布局 flex布局与方向无关 flex布局可以实现空间自动分配、自动对齐。...

  • Flex 布局教程

    一、Flex 布局教程:语法篇 Flex 布局教程:语法篇 二、Flex 布局教程:实例篇 Flex...

  • css flex布局详解

    css flex布局详解 css flex布局详解1css flex布局详解2

  • Flex

    阮一峰-Flex布局 阮一峰-Flex布局实例教程 Flex布局 块级元素 行内元素 注意,设为 Flex 布局...

  • flex布局学习笔记

    经典教程 Flex 布局教程:语法篇Flex 布局教程:实例篇flex布局游戏 理解 flex布局实现需要至少两层...

  • 6Flex 布局

    Flex,(Flexible Box),意为"弹性布局"采用 Flex 布局的元素,为 Flex 容器(flex ...

  • css flex

    css flex布局 采用 Flex 布局的元素,称为 Flex 容器(flex container),简称“容器...

  • Flex布局(语法篇)

    一、介绍Flex布局 什么是Flex布局呢?Flex布局:又称弹性布局,它是Flexible Box 的缩写,它为...

  • Day02_flex布局

    一、flex布局介绍: 1、又名Flexible 布局,弹性布局;2、开启了 flex 布局的元素叫 flex c...

网友评论

      本文标题:flex布局

      本文链接:https://www.haomeiwen.com/subject/zdhtuktx.html