Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>JS Bin</title>
  </head>
  <body>
    <div class="box">
      <div class="inner-box">
        
      </div>
      
    </div>
  </body>
</html>
 
* {
  box-sizing: border-box;
}
body {
  font-size: 16px;
}
.box {
  /* width: 500px; */
  border: 2px red solid;
  padding: 10px;
}
.inner-box {
  width: 20em;
  border: 2px blue solid;
  padding: 10px
}
Output

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

Dismiss x