No background image in code playground
I have tried multiple ways to get a background image to produce from a url. I was able to link p5.js scripts on the HTML tab using urls, and they run fine. I have tried different methods of entry and multiple image addresses without success. Am i missing something, or is that a limitation of the "playground environment" I have tried: CSS body { background-image: url(" VARIOUS ADDRESSES "); } HTML HEAD <style> body { background-image: url(" VARIOUS ADDRESSES "); } </style> HTML body <body style="background-image:url(' VARIOUS ADDRESSES ');"> JS The p5.js preload() described here: https://p5js.org/reference/#/p5/preload This produces an "Access_Control_Allowe_Origin" error. I just thought about makeing a button with an onclick event to change try to change it. I'll be trying that next. All comments are appreciated!