move div to right side of div code example
Example 1: align div to right side of parent
/* align the div to right side */
margin-left:auto;
margin-right:0;
Example 2: how to shift div to right
<div style="float:left;">
Example 3: div shift right
<div style="position:absolute; right:10;">Hello world</div>