• IE10兼容flex布局的属性使用


    IE10以下完全不兼容flex,IE10部分兼容,使用时对应chrome的用法为如下所示:

    chrome                  IE10

    display: flex;               display: -ms-flexbox;

    flex-direction: column;          -ms-flex-direction: column;

    justify-content: center;          -ms-flex-pack: center;

    justify-content:space-between;       -ms-flex-pack: justify;

    justify-content:space-around;       -ms-flex-pack: justify; // 无法实现,用justfiy代替

    justify-content: flex-end;          -ms-flex-pack: end;

    align-items: flex-start;           -ms-flex-align: start;

    align-items: center;            -ms-flex-align: center;

    align-items: flex-end;          -ms-flex-align: end;

    align-items: baseline;            -ms-flex-align: baseline;

    flex: 1;                -ms-flex: 1;
    align-self: center;            -ms-align-self: center;
    flex-wrap: wrap;              -ms-flex-wrap: wrap;
     
    注:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 inherit。

      

  • 相关阅读:
    日本语教育文法ナ イ形容词
    日本语教育文法和国语教育文法
    Multisim note
    莫比乌斯反演
    【NOIP2015】斗地主(dfs)
    【SCOI2007】降雨量(线段树+讨论)
    CF559C Gerald and Giant Chess(计数DP)
    【NOIP2012】开车旅行(倍增+STL)
    Apache Flink目录遍历(CVE-2020-17519)
    CTF文件包含
  • 原文地址:https://www.cnblogs.com/akunz/p/13476951.html
Copyright © 2020-2023  润新知