min-height auto property doesn’t work in qq browsers

Min-height will not work when your code like:

1
2
3
4
5
  div
    min-height 100%
    @media (max-width: $response-phone)
       width auto
       min-height auto

so the solution is use display table like:

1
2
3
4
5
6
  div
     display table
     height inherit
     width 100%
     height auto
     min-height: auto
comments powered by Disqus