+ 2
Background image
Can anyone tell how to add background image in code To the phone not pc
6 Antworten
+ 2
To the phone
+ 2
Thank u sir 🤩
+ 2
See the below link..
Use valid url;
To directly add in html, add it in body tag, or in head tag:
<style>
body {
background-image: url("http://www.sololearn.com/uploads/css_logo.png");
}
</style>
https://www.sololearn.com/learn/CSS/1104/?ref=app
Sir this is not working 😔
+ 2
My image is getting repeated, what should I do that does not repeat?
+ 1
See the below link..
Use valid url;
To directly add in html, add it in body tag, or in head tag:
<style>
body {
background-image: url("http://www.sololearn.com/uploads/css_logo.png");
}
</style>
https://www.sololearn.com/learn/CSS/1104/?ref=app
+ 1
body {
background-image: url("");
background-repeat:no-repeat;
}