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>JS Bin</title>
</head>
<body>
  
  <div class="a"><h1>a</h1><code>margin-left: calc(0 + 5em);</code></div>
  <div class="b"><h1>b</h1><code>margin-left: calc(0px + 5em);</code></div>
  
</body>
</html>
 
div {
  outline: 1px solid;
  padding: 1em;
  width: 50%;
}
.a {
  margin-left: calc(0 + 5em);
  outline-color: red;
}
.b {
  margin-left: calc(0vw + 5em);
  outline-color: green;
}
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers