Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
  <div class="wrap">
    <button>Toggle box-sizing</button>
    
    <output id="boxSizing">box-sizing is off</output>
    
    <div id="example" class="box">
      <p>Click the button above to toggle the box-sizing.</p>
    </div>
    
    <output id="output1"></output>
    
    <output id="output2"></output>
    
    <output id="output3"></output>
    
    <output id="output4"></output>
    
    <output id="output5"></output>
  </div><!-- .wrap -->
  
</body>
</html>
 
.wrap {
  width: 440px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  text-align: center;
}
button {
  display: block;
  margin: 50px auto 0 auto;
}
.box-sizing {
    box-sizing: border-box;
}
.box {
  background: aquamarine;
  width: 240px;
  height: 220px;
  padding: 50px;
  margin: 40px 60px;
  border: solid 3px chartreuse;
}
output {
  display: block;
  font-weight: bold;
  margin-top: 20px;
}
Output 300px

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

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers