1

I stuck to hide div between two screen size. like I want to hide div between screen sizes 550px - 910px with the following media query.

@media only screen and (min-width: 550px) - (max-width: 900px)
{

  .bsp_big-image{
      display: none !important;
  }

}
Upasana Chauhan
  • 948
  • 1
  • 11
  • 32

1 Answers1

1

use the following syntax to do it:

@media (min-width: 550px) and (max-width: 900px)
{

  .bsp_big-image{
      display: none !important;
  }

}
Basil
  • 1,613
  • 12
  • 25