Hi I did the css validator and I got these:
only 0 can be a length. You must put a unit after your number ){ *{ background:white url(“../images/background1024768.png”) no-repeat left top} }
what’s up with that may be is because of the @media property? Am I doing it wrong? here’s the css:
@media(min-width:1280){
*{ background:white url("../images/background1280800.png") no-repeat left top;}
}
You’re missing a unit.
min-width:1280pxAlso per style guides, avoid using quotes in background URLs.
background:white url(../images/background1280800.png) top left no-repeat