html - Can we use images in CSS background in Google AMP? -
can use images in css background in google amp?
<pre> <div style="background-image: url(assets/img/business1.jpg);></div> </pre>
you can :
css on head section
<style amp-custom> .img-background { background-image: url(assets/img/business1.jpg); } </style> html
<pre> <div class="img-background"></div> </pre>
Comments
Post a Comment