<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.red {
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>