Ninetiger blog

-- my reminder

Show img with cover 100% div and control which part of the img to show

HTML:

   <div id="contactContent">

css:

#contactContent {
    background: url(img/cow2.jpg) bottom no-repeat;   //use bottom/center/top to control which part of the pic to show
    background-size: cover;   //Ensure the image is cover 100%
    height: 390px;
}

Comments:

Back to top