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