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

Popular posts from this blog

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -

angular - DownloadURL return null in below code -