Position in CSS

 body{

    font-family'Segoe UI'Tahoma, Geneva, Verdanasans-serif;
    font-size18px;
}

.container{
    border1px solid red;
    height300px;
    width500px;
    overflowscroll;
    margin-left300px;
    margin-top100px;
    positionrelative;
}

.container img{
     height100px;
     width100px;
    /* static  */
    /* This is default */
    /* position: static;
     left: 350px */

    /* fixed */
    /* It takes left right , but image is fixed
     (matlab pic ko ham kahi bhi le ja sakte hai )*/
    /* position: fixed;
     left: 350px */

    /* absolute */
    /* absoulte apne parent ke hisab se 
     move karega . uske liye uske parent me
     hame postiotion:relative karna hoga */
    /* position: absolute;
     left: -40px; */

}