Answers for "how to make whole window background in js"

CSS
0

how to cover full image in css

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
Posted by: Guest on March-03-2020
9

javascript change background color

document.body.style.backgroundColor = "yellow";
Posted by: Guest on July-08-2020

Code answers related to "how to make whole window background in js"

Browse Popular Code Answers by Language