Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="es">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
    <title>Título</title>
    <style>
      p {
        background: yellow;
      }
      @media screen and (max-width:1024px) {
        p {
          background: blue;
        }
      }
      
      @media screen and (max-width:768px) {
        p {
          background: red;
        }
      }
      
      @media screen and (max-width:480px) {
        p {
          background: green;
        }
      }
    </style>
  </head>
  <body>
    <p>Hola</p>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers