-2

is it possible to hide to overflow only if the user is on a computer or something other then a phone? I've already tried hiding the overflow with overflow: hidden; but that hides the overflow for phone users as well. How can I achieve this?

1 Answers1

0

Yes, you can use CSS media queries.

For example:

body{
    overflow: hidden;
}

/* this is for mobile devices */
@media only screen and (max-width: 480px){
    body{
        overflow: visible;
    }   
}
Rev
  • 29
  • 6