Effect How to - Change Border Meeting/Join point








Question

We would like to know how to change Border Meeting/Join point.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.red {<!--from www.j  a v a  2s  .c om-->
  width: 200px;
  height: 200px;
  background: red;
  border-left: 5px solid pink;
  -moz-box-shadow: inset 0 5px green;
  box-shadow: inset 0 5px green;
}
</style>
</head>
<body>
  <div class="red"></div>
</body>
</html>

The code above is rendered as follows: