html - media queries max width 320px issue -
i have problem media queries in 320px width. tried next codes set query browsers don't recognise it, doesn't work correctly:
1- @media screen , (min-width: 320px) {
2- @media (min-width:320 px) , (max-width:480 px)
3- @media (max-width: 320px){
none of them work me. doing wrong?
thanks lot!
try
@media screen , (min-width:3.33%){ .yourclass{ width : 20%; } }
and better u use %
instead of px
Comments
Post a Comment