The fixed element is scrolling with window scrolling.
body {
background-color: #f3f7f9;
/** I used perspective for some 3d animation purpose **/
perspective: 1000px;
}
#sidebar {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 200px;
background-color: #007711;
}
.content {
height: 400px;
width: 600px;
background-color: #fff;
border: 1px solid #eee;
border-radius: 4px;
margin: 2rem auto;
}
<div id="sidebar">
<h1>Am I Scrolling ?</h1>
</div>
<div class="content"></div>
<div class="content"></div>
<div class="content"></div>