IE11 ignore my media queries and always using the mobile css.
the weird thing is that if i'll change the browser width, even for just 1-2 pixel, the browser will render itself and the media queries are shown.
i tried css lint and i have no errors in my css.
i have nothing special in my css. just plain css like this:
.div_example{
width: 100px;
}
@media (min-width: 768px){
.div_example{
width: 300px;
}
}
Has anyone encountered this problem?