Media Queries - In between two widths

PHOTO EMBED

Thu May 02 2024 09:51:44 GMT+0000 (Coordinated Universal Time)

Saved by @divyasoni23 #css

//css
@media (min-width:768px) and (max-width:992px) {
    .foo {
        display:none;
    }
}
//scss
//@media (min-width:768px) and (max-width:992px) {
  // display:none;
//}
content_copyCOPY