gpt4 book ai didi

html - IE10 中的 flex-shrink

转载 作者:太空宇宙 更新时间:2023-11-04 16:06:02 25 4
gpt4 key购买 nike

我有一个 block ,其中有一个图像和另一个 block 。

父 block 有display:flex,使图像和子 block 排成一排。

子 block 也有 display:flex,但它形成了一个由段落和标题组成的列。

http://codepen.io/anon/pen/qNmYRq

.summary__testimonial{
display: -ms-flexbox;
display: flex;
padding-bottom: 120px;
padding-top: 35px;
max-width: 100%;
}

.summary__testimonial-right{
display: -ms-flexbox;
display: flex;
-ms-flex-direction:column;
flex-direction:column;
box-sizing: border-box;
max-width: 100%;
-ms-flex-negative:1;
flex-shrink:1;
-ms-flex-pack:center;
justify-content:center;
width: auto;
}

问题是文本段落在 IE 10 中溢出了他的 parent 。

我尝试设置 max-width:100%width:autobox-sizing:border-box、更改 flex-shrink 值到 10

如果您在 IE 10 中打开它,它仍然会溢出或变成单行,这很可能是您在 codepen 中看到的情况。

有没有办法让它在 IE 10 中看起来与在普通浏览器中一样?

最佳答案

flex-shrink 的 IE10 等效项是 -ms-flex-negative

例如,

-ms-flex-negative: 0;

关于html - IE10 中的 flex-shrink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38146628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com