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

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -