Working with media queries, I need to be able to use the css keyword "initial". Unfortunalty it's not suported by Internet Explorer.
Could I replace it by "auto" on another keywork do work around this issue ?
/* visibility classes */
.hidden, .hidden-on-phone, .hidden-on-tablet {
display: none;
}
@media (min-width: @tablet-screen) {
.hidden-on-phone {
display: initial; // not ie compliant
}
}
@media (min-width: @desktop-screen) {
.hidden-on-tablet {
display: initial; // not ie compliant
}
}