IE10 有 flex-grow 吗?

Is there a flex-grow for IE10?

据我所知,Caniuse 使用 -ms- 前缀表示部分支持 http://caniuse.com/#search=flex-grow

然而,当测试 -ms-flex-grow 在 IE10 中没有效果时,我在这里缺少什么?

[答案于 2017 年 11 月更新]

flex-grow 仅支持 Internet Explorer 11+,无 -ms- 前缀。 https://developer.mozilla.org/en-US/docs/Web/CSS/flex-grow

要找出适用于 IE 10 的内容,请使用 Autoprefixer

1 - 将过滤器设置为 "ie 10"

2 - 输入 CSS,例如:

.example {
  flex-grow: 3;
}

3 - 自动前缀结果:

.example {
  -ms-flex-positive: 3;
  flex-grow: 3;
}

现在你知道 IE 10 使用什么前缀了

flex-grow 的 IE10 等价物是 -ms-flex-positive

例如,

-ms-flex-positive: 1;