image position css

CSS
#IMAGE_ID {
	position:absolute;
  
  	/*left: (how much pixles from the left you want)px*/
  	left:100px;
  
    /*top: (how much pixles from the top you want)px*/
  	top:100px;
}

#MY_OTHER_IMAGES_ID {
    /*right: (how much pixles from the right you want)px*/
  	right:100px;
  
    /*bottom: (how much pixles from the bottom you want)px*/
  	bottom:100px;
}h2.pos_left {
  position: relative;
  left: -20px;
}

h2.pos_right {
  position: relative;
  left: 20px;
}
Source

Also in CSS: