Block to the left
HTML
<div id="test"></div>
CSS
*{
overflow: visible;
}
#test{
position: absolute;
height: 100px;
width: 100px;
right: -50px;
background-color: lime;
}
<div id="test"></div>
*{
overflow: visible;
}
#test{
position: absolute;
height: 100px;
width: 100px;
right: -50px;
background-color: lime;
}