blob: 0ae10464f0047ef13535b6d8e77851e66d70411c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#shiftMe {
position: relative;
left: -20px;
}
.container {
overflow: hidden;
}
.imgContainer {
position: relative;
float: left;
}
</style>
</head>
<body>
<div class="container">
<div id="shiftMe">
<div class="imgContainer">
<img src="../resources/apple.jpg">
</div>
</div>
</div>
</body>
</html>