zoukankan      html  css  js  c++  java
  • 弹性盒子模型兼容性

    弹性盒子模型兼容性:

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex; 
    
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center; 
    -o-align-items: center; 
    align-items: center;
    
    -webkit-flex: 1; 
    -moz-flex: 1; 
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    
    -webkit-flex-wrap: wrap; 
    -moz-flex-wrap: wrap; 
    -ms-flex-wrap: wrap; 
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    
    -webkit-justify-content: space-between; 
    -moz-justify-content: space-between; 
    -ms-justify-content: space-between; 
    -o-justify-content: space-between; 
    justify-content: space-between;
    
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end; 
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end; 
    justify-content: flex-end;
  • 相关阅读:
    JavaScript DOM 编程艺术(第2版)读书笔记(3)
    JavaScript DOM 编程艺术(第2版)读书笔记(1)
    css杂记
    2020年11月15日
    2020年11月14日
    2020年11月13日
    2020年11月12日
    《代码大全》阅读笔记04
    2020年11月11日
    2020年11月10日
  • 原文地址:https://www.cnblogs.com/huanghuali/p/14820813.html
Copyright © 2011-2022 走看看