美文网首页
📦 Flexbox学习笔记

📦 Flexbox学习笔记

作者: 秋衣队长 | 来源:发表于2019-01-30 00:21 被阅读0次

CSS Flexible Box Layout is a module of CSS that defines a CSS box model optimized for user interface design, and the layout of items in one dimension. In the flex layout model, the children of a flex container can be laid out in any direction, and can “flex” their sizes, either growing to fill unused space or shrinking to avoid overflowing the parent. Both horizontal and vertical alignment of the children can be easily manipulated. (more)

基本设定

1. 设定

<style>
    .box{
        display: flex; /*使用flexbox*/
    }
</style>

<body>
    <div class="box">
        <div>One</div>
        <div>Two</div>
        <div>Three</div>
    </div>
</body>

首先要把三个元素装进flexbox中。

2. 基本属性

  • Axes

    • flex-direction属性

      • row
      • column
      • row-reverse
      • column-reverse
    • flex-wrap属性

    • flex-flow属性

      • flex-flow: row wrap;
  • Align

    • align-items属性

      • stretch
      • flex-start
      • flex-end
      • center
    • justify-content属性

      • flex-start
      • flex-end
      • center
      • space-around
      • space-between
      • space-evenly

相关文章

  • React-Native中的Flexbox布局

    RN 的 Flexbox 布局的学习笔记 1.什么是 Flexbox 布局? Flexbox,弹性布局,可以以响应...

  • flexbox学习笔记

    参考阮一峰博客~http://www.ruanyifeng.com/blog/2015/07/flex-examp...

  • flexbox学习笔记

    Flexbox 布局是CSS3中一种新的布局模式,用于改进传统模式中标签对齐、方向、以及排序等等缺陷浏览器支持情况...

  • 📦 Flexbox学习笔记

    CSS Flexible Box Layout is a module of CSS that defines a...

  • Flexbox和Texture

    本文是< > 第二十七篇学习笔记. Flexbox 是 React Native、Weex 和 Texture(A...

  • Flexbox布局学习笔记

    W3C解释: In the flex layout model, the children of a flex c...

  • flex布局学习笔记

    学习flex布局中的一些笔记。参考:FLEXBOX FROGGY justify-content属性 用于水平对齐...

  • CSS Flexbox详解

    Flexbox是一个强大而灵活的布局,本篇文章主要对其进行学习了解。 一、Flexbox简介 Flexbox布局(...

  • Flexbox学习

    简介 Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。采用Flex布局...

  • 学习Flexbox

    https://www.w3cplus.com/css3/understanding-flexbox-everyt...

网友评论

      本文标题:📦 Flexbox学习笔记

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