<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
background-color:#FFFFFF;
}
#blueDIV {
position:relative;
width:100px;
padding:10px;
background-color:lightblue;
left: 50px;
}
</style>
</head>
<body>
<h1>The left property</h1>
<div id="myDIV">
<div id="blueDIV">Use the css left value to adjust the position of an element.</div>
</div>
</body>
</html>