我的背景图片这么大:1920×1200

这是我的显示方式:

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;
}


这可以正常工作,但是现在我希望能够在达到某个预定范围后停止重新调整?就像当图像缩小到1300 x 500时,它应该停止了。

我该如何实现?

最佳答案

您是否已签出min-widthmax-width属性?

当您开始弄乱宽度时,请确保将高度设置为100%以保持宽高比。

09-25 17:17
查看更多