Hi @Vishakraj! Thanks for creating this issue. I tried your solution and some thing like this actually worked for me. Here is the complete code:
import gradio as gr
css_code='body{background-image:url("https://picsum.photos/seed/picsum/200/300");}'
gr.Interface(lambda x:x, "textbox", "textbox", css=css_code).launch(debug=True)
Hi @Vishakraj perhaps it has something to do with the permissions on Google Drive. You could try a different image hosting solution, like imgbb and see if that works for you?
Looks like the documentation is wrong for the latest version of Gradio - 3.14.0, you have to use div instead of body. The working code looks like this: