I have a large image (3000px by 2000px) that I want to use as the background for my website and adjust it to fit the window size. Currently, I have implemented the following CSS:
body {
background: url('image.jpg') !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position: center !important;
}
While the image is displaying as the background, only the center portion of the image is visible, not the entire image.
Is there a way to make the full image visible using CSS?