Image Positioning

CSS stylesheet for example

CSS Code

...
div.image {
  background-image: url(../images/calendar.jpg);
  background-repeat: no-repeat;
  background-position: 100% 0%;
  width: 29%;
  height: 350px;
  margin: 0;
  padding: 0;
  float: left;
}
...

HTML Code

...
<div class="image"></div>
...