0

I am trying to hide certain content with visibility based on media query. It works, but it creates empty scrollable space like the containers are still there. Is there a way to eliminate this?

When the screen is in "Desktop" mode - it has all the mobile empty space below and vice versa when in "Mobile".

http://oberers.com/mt2.html

Dan
  • 17
  • 6
Greg
  • 21
  • 7

1 Answers1

0

Change div.desktop

visibility: hidden 

to

display: none

Reference: display none

AGE
  • 3,752
  • 3
  • 38
  • 60