I try to use WebP inside background. How to manage old browsers as it demands
<picture>
<source type="image/webp" srcset="background.webp">
<source type="image/jpeg" srcset="background.jpg">
<img src="background.jpg" alt="">
</picture>
Code for the background is the following:
style="background-image:url('background.jpg');
PaulOB
2
Have a look at this CSS Tricks article that mentions methods of handling background images using modernizr.
However i don’t believe you will be able to inline them because they will need to be linked to the modernizr class.
system
Closed
3
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.