我有一个巨大的图像(2000 像素上的 3000 像素),我想将此图像设置为网站的背景并调整图像与窗口的比例。到目前为止,我正在这样做:
body {
background: url('image.jpg') !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position: center !important;
}
图像设置在背景上,但并不完全可见 - 只是图像的“中心”,而不是整个图像。
有没有办法使用 CSS 来做到这一点?