I have a fixed, 100% height menu on the left, and I need to create a shadow effect on its right side, which will disappear after.
See the figure that illustrates this.

How to create this effect?
Here is the fiddle: http://jsfiddle.net/52VtD/7787/
HTML:
<nav id="main-menu">
<h1>Hello</h1>
<a href="#">A</a>
<a href="#">B</a>
<a href="#">C</a>
<a href="#">D</a>
</nav>
CSS
#main-menu {
width: 320px;
height: 100%;
top: 0;
z-index: 1000;
position: fixed;
background-color: #b4bac1;
}
source
share