Trying to figure out how to server webp images from a style sheet for tag elements WITHOUT a selector. For example, header.
For example:
.no-webp header {
background-image: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0) 26.05%), url('../img/my-image.jpg');
} .webp .header { background-image: linear-gradient(rgba(0, 0, 0, 0.73), rgba(0, 0, 0, 0) 26.05%), url('../img/my-image.webp'); }
The above code does not display either the jpg or webp.