How can I debug why the background image is not displaying?

Viewed 68
1 Answers

To change the element background image you can use the codes below:

bodyElement.style.backgroundImage='url(./assets/pictures/pexels-chevanon-photography-1108099.jpg)';
bodyElement.style.backgroundSize='cover';
Related