无法让flexbox在IE / Safari中工作

时间:2018-02-07 14:26:17

标签: css internet-explorer safari flexbox vendor-prefix

这一切在我的MBP Chrome中完美运行,但在其他浏览器上无休止地打破。我用https://autoprefixer.github.io/来生成必要的前缀,但无济于事。

也许有人可以发现我哪里出错了?我把前缀代码条纹化了,因为我不知道现在影响了什么,所以它有点空白了......继承人的代码和相关的截图

enter image description here

enter image description here

代码被修改,因为这里有很多差异化的div。订单将是父母>孩子等..

.recommendation-modal {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: flex-start;
  background: #FFFFFF;
  z-index: 202;
  width: 100%;
  max-width: 800px;
  height: 70vh;

.rec-right--container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    height: 100%;
    background-color: #4B77BE;
    color: #fff;

.rec-right--body {
      display: -moz-flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
      -moz-flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 20px;
      height: 100%;
      @media (max-width: $screen-sm) {
        flex-direction: row;
      }

1 个答案:

答案 0 :(得分:0)

结束只需要添加旧语法,我基本上只是找到了所有旧语法并将它们放在那里直到它工作...