.image{
    height:100px;
}
#relative .image{
    left:80%;
    bottom:50px;
}

#absolute .image{
    position: absolute;
  top: 80px;
  right: 0;
}

#fixed .image{
    position: fixed;
  bottom: 0;
  right: 0;
}