Can we use images in CSS background in Google AMP?
<pre>
<div style="background-image: url(assets/img/business1.jpg);></div>
</pre>
You can do like this :
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>