+ 1
I'm wanting a static black background with grey/silver sections to scroll over the background. What am I missing?
3 odpowiedzi
+ 2
In CSS, change value in body { background-color:; } to rgb(0,0,0).
After changes u got this
body { background-color:rgb(0,0,0);
padding:10px
margin:0;
}
0
Oh nice thank you!