Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Media query demo</title>
</head>
<body>
<img class="hide-wide" src="https://placehold.it/300x300/95ECD6/000/?text=<%20768px" alt=""/>
<p>Some text</p>
<img class="hide-narrow" src="https://placehold.it/300x300/DAC6FF/000?text=>=%20768px" alt=""/>
  
</body>
</html>
 
@media all and (min-width: 768px) {
  .hide-wide {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .hide-narrow {
    display: none;
  }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
tedwpro
0viewers