在IE浏览器测试中发现line-height使用vh作为单位失效的问题,后来加了display:-ms-flexBox后得到解决。
.title{
display:-ms-flexBox;
line-height: 9.1vh;
}
在IE浏览器测试中发现line-height使用vh作为单位失效的问题,后来加了display:-ms-flexBox后得到解决。
.title{
display:-ms-flexBox;
line-height: 9.1vh;
}