• Live2D 看板娘


    display:flex display:box的进化版,但是存在兼容性问题

        兼容性分析:http://blog.csdn.net/qishuixian/article/details/53258807

        使用Flexbox:新旧语法混用实现最佳浏览器兼容:http://www.w3cplus.com/css3/using-flexbox.html

    相关属性:
    flex-direction 设置主轴方向
                row  从左向右排列(默认值)
                row-reverse 从右向左排列
                column 从上往下排列
                column-reverse 从下往上排列

    justify-content 主轴对齐
                flex-start (默认) 元素在开始位置 富裕空间占据另一侧
                flex-end 富裕空间在开始位置 元素占据另一侧
                center 元素居中 富裕空间 平分左右两侧
                space-between 富裕空间在元素之间平均分配
                space-around  富裕空间在元素两侧平均分配

    align-items    侧轴对齐
                flex-start (默认) 元素在开始位置 富裕空间占据另一侧
                flex-end 富裕空间在开始位置 元素占据另一侧
                center 元素居中 富裕空间 平分左右两侧

    flex-wrap 换行
                nowrap (默认)
                wrap 换行
                wrap-reverse 反向换行

    align-content 堆栈伸缩行
                align-content 会更改 flex-wrap 的行为。它和 align-items 相似,但是,不是对齐伸缩项目,它对齐的是伸缩行。
                flex-start (默认) 元素在开始位置 富裕空间占据另一侧
                flex-end 富裕空间在开始位置 元素占据另一侧
                center 元素居中 富裕空间 平分左右两侧
                space-between 富裕空间在元素之间平均分配
                space-around  富裕空间在元素两侧平均分配
                
                flex-flow
                flex-flow 是 flex-direction 和 flex-wrap 的缩写
                flex-flow: [flex-direction] [flex-wrap]

    order 显示顺序
                数字越大,显示越靠后
                支持负数

    flex 伸缩性
                flex: auto
                flex: none

    align-self 子元素侧轴对齐
                flex-start (默认) 元素在开始位置 富裕空间占据另一侧
                flex-end 富裕空间在开始位置 元素占据另一侧
                center 元素居中 富裕空间 平分左右两侧

    margin:auto;上下左右居中对齐

  • 相关阅读:
    django操作mysql时django.db.utils.OperationalError: (2003, "Can't connect to MySQL server")异常的解决方法
    Django实践:个人博客系统(第七章 Model的设计和使用)
    shared_ptr / weak_ptr 代码片段
    Java中比较容易混淆的知识点
    指针和引用作为参数的区别
    STL 算法
    STL扩展容器
    STL中 map 和 multimap
    STL中 set 和 multiset
    <<C++标准程序库>>中的STL简单学习笔记
  • 原文地址:https://www.cnblogs.com/jiangtengteng/p/6210767.html
Copyright © 2020-2023  润新知