我有一个模式,我通过这个代码
居中.modal {
max-height: 85%;
min-width: 600px;
overflow: auto;
z-index: 10001;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
每当触发溢出时(通过溢出:自动;)Internet Explorer中的文本模糊。这似乎与变换的css冲突,但我无法找出一个成功的组合。我已尝试过其他问题的一些建议(使用transform3d并添加translate-z)。并添加过滤器:blur(0)。到目前为止没有运气。