justify-content这个属性在IE浏览器中实现的条件是元素要有实际的高度
所以我就在js中用isIE()方法加了个判断:
if (Cleverex.CommonFun.IsIE())
{
let objSelectAppContent = $("#selectAppContent");
objSelectAppContent.css("height", "100%");
}
然后我的元素就垂直水平都居中了。
原文:https://www.cnblogs.com/maleijiejie/p/14927824.html