Ie is being weird again.
Our team is trying to add some styles for ie only so resize some text that lays on an image. The first ms-high-contrast works however all the following media queries fail. Is there a better more eloquent way to do this?
We're at a loss. What's up with ie?
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.homebox .mdlogolg{
left: -60px;
}
@media (max-width: 1199px) and (min-width: 992px) {
.homebox .mdlogolg{
left: -60px;
}
}
@media (max-width: 991px) and (min-width: 768px) {
.homebox .mdlogolg{
left: -36px;
}
}
@media (max-width: 767px) {
.homebox .mdlogolg{
left: -25px;
}
}
}