简体   繁体   中英

How do I stop an image from shrinking after it has reached a certain point?

My background image is this big: 1920 × 1200

Here is how I am displaying it:

html {
    background: url("back.png") no-repeat top left fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

This works fine but now I want to be able to make it stop from re-adjust after reaching a certain pre-defined range? Like maybe when the image has shrank to reach 1300 x 500 it should stop.

How can I achieve this?

Have you checked out the min-width and max-width properties?

When you start messing with the width, make sure you set the height to 100% to maintain the aspect ration.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM