Fixed positoin

by senica

HTML

<div class="parent">
    <div class="child"></div>
</div>

CSS

.parent{
    width:100px;
    height:100px;
    -webkit-transform: translateZ(0);
    background:red;
    margin:100px;
}

.child{
    width:30px;
    height:30px;
    position:fixed;
    background:blue;
    left:-5px;
}