I want to make a background image in the body that won't maintain the aspect ratio of the ratio.
html,
body {
height: 100%;
background-image: url(../images/xmasbg13.jpg);
background-size: 100% 100%;
background-repeat: no-repeat;
}
The code above works fine if the browser window is in full screen. But when I resize the browser, it maintains the aspect ratio of the image and won't cover the whole page.