CSS Left Offset

The left property moves elements horizontally from the left.

Preview

Code

<style>
.box{
position:relative;
left:30px;
background:#fde68a;
padding:10px;
}
</style>

<div class="box">Moved right using left</div>

More CSS Position Offsets Examples (7)