当前位置: 首页 > article >正文

flex 弹性布局 笔记


  <style> 
    /* 
flex-direction (即项目的排列方向)
flex-wrap (换行)
flex-flow ( flex-direction属性和flex-wrap属性的简写形式)
justify-content  (项目的对齐方向)主轴
align-items        (项目的对齐方向)测轴
align-content   ( 多根轴线的对齐方式)

flex-direction: row | row-reverse | column | column-reverse;
flex-direction属性决定主轴的方向(即项目的排列方向)。
row(默认值):主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。
  flex-wrap: nowrap | wrap | wrap-reverse;项目都排在一条线(又称"轴线")上。flex-wrap属性定义,如果一条轴线排不下,如何换行
flex-flow属性是flex-direction属性和flex-wrap属性的简写形式
justify-content属性定义了项目在主轴上的对齐方式 (项目的对齐方向)。

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

 align-items属性定义项目在交叉轴上如何对齐 (项目的对齐方向)。

 align-items: flex-start | flex-end | center | baseline | stretch;
align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用
align-content: flex-start | flex-end | center | space-between | space-around | stretch;


    */
    
    .container {
         height: 200px;
      background-color: red;
      display:flex;

        flex-direction:row; 
         justify-content:flex-end; 
/*         align-items:stretch ; */
             align-content:center;  
    }

    *{ border:black 1px solid; }
    .item   { background:blue; 
     color:white; 
     width: 50px;
   /*   height: 50px;*/
     }
 

  </style>
</head>
<body>
 
    <div class="container">
        <div class="item">Item 1</div>
        <div class="item">Item 2</div>
        <div class="item">Item 3</div>
    </div>
 
 


http://www.kler.cn/a/441130.html

相关文章:

  • zsh安装插件
  • 【C++动态规划 离散化】1626. 无矛盾的最佳球队|2027
  • arm-linux-gnueabihf安装
  • 全面解析文件上传下载删除漏洞:风险与应对
  • doris:异常数据处理
  • Node.js 的底层原理
  • 一行一行出字的视频怎么做?简单的操作方法
  • Django基础之模板
  • 30、使用ESP8266跟SG90舵机制作四足蜘蛛机器人
  • 【工具】13款免费AI工具助你高效生成代码
  • [创业之路-198]:华为的成立发展与新中国的建立与发展路径的相似性比较
  • 进阶版 -- 某恋爱话术 app 的爬虫经历与思考(含脚本)
  • 计算机网络 | 1.计算机网络概述
  • gcclinux静态库动态库学习
  • 网络数据包分析
  • uniapp小程序的锚点定位(将页面滚动到目标位置)
  • linux下操作es及kibana的操作记录
  • OpenCV的简单练习
  • 性能评估工具之lmbench
  • cuda附加到python进程(vscode)
  • 记录linux websocket握手时间过长问题
  • 基于python绘制数据表(上)
  • Spark优化----Spark 数据倾斜
  • Android Room 数据库使用详解
  • 【使用PyQt5和YOLOv11开发电脑屏幕区域的实时分类GUI】——选择检测区域
  • CTFHUB靶场关于SSRF保姆级攻略