我需要针对IE11以及特定的断点,因为某些事情在IE11上无法正常运行。我知道编辑所需的CSS,但是我无法找出媒体查询来同时正确定位IE和屏幕尺寸。
我尝试了以下代码以及每个代码的多种变体。
我的问题是,这里出了什么问题,我该如何解决才能起作用?
@media screen and (-ms-high-contrast: active) and (min-width: 1200px),
screen and (-ms-high-contrast: none) and (min-width: 1200px) {
.scene-info {
CSS GOES HERE
}
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none), screen and (max-width: 991px) {
.scene-info {
left: 1px;
}
}