.bg-img {
background-image:url(data:image/png;base64,iVBORw0KGgoAAAA... etc );
}
How can I refer to that image with an https prefix? When I go to the CSS that's how I see it.
Normally when you have an image src you can do the following:
background-image: url(https://domain.com/photo.png);
How can I use https for the data URI?