+ 3
How to add a full page background in html?
I want a full page background
3 Answers
+ 6
You can use CSS.
This is for color:
body {
background-color: black;
}
This is for image:
body {
background-image: url (source);
}
+ 4
JTLZ thanks a lot for answering my questions
0
And then you have to add background-size:cover;