+ 1
Give me please some codes for background image
my image was on my phone and it doesnt work
1 Answer
0
div{
background-image:url("~path");
background-color:#FFFFFF;
}
You need to give a path which the browser has access to.
If you are using android phone, put that image on storage and use this path.
/internal storage/filename.png
/external storage/filename.png /* if you have copied to sd card */
This should be enough.



