I would like it to be so that when you bounce the website on an iphone and the background colour momentarily shows that an image is displayed instead of a colour.
body {
background-color: #c7466196!important;
}
works fine
However when I use this code:
body {
font-style: normal;
font-weight: 400;
color: #999999;
background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Cat03.jpg/1024px-Cat03.jpg)!important;
background-position: center;
background-color: transparent;
}
White is displayed but no image (I have used a generic image online for demonstration purposes)
Does anyone have any solutions?
Thanks!