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

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -