Answers for "css hide div on mobile"

CSS
1

css hide div on mobile

/*I have set the width to 900 you can change it if you want*/

@media(max-width:900px) {
  div{
    visibility: hidden;
  }
}
Posted by: Guest on July-21-2021

Browse Popular Code Answers by Language