My current issue involves CSS for media min-height and min-width, which works perfectly on Chrome but not on IE11.
Here's the code snippet in question:
@media (min-width: 0) and (max-width: 992px) {
@media (min-height: 0) and (max-height: 480px) {
#menu_fixed_left {
height: 30vh !important;
}
}
}
I'm curious to know if this code will work on IE. I haven't been able to get it functioning correctly despite my efforts.