Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="green-border">Green </div>
  <div class="red-border">Red </div>
  <div class="blue-border">Blue </div>
</body>
</html>
 
.color-border(@col) {
    border : 1px solid @col;
    box-shadow : 0 1px 3px rgba(0,0,0,0.2);
    margin : 10px;
}
.red-border { 
  .color-border(red);
}
.green-border { 
  .color-border(green);
}
// Is this possible ? 
.color-border { 
  box-shadow : none;
}
.blue-border { 
  .color-border(blue);
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers