Error: CSS: background: / is an incorrect operator
问题 I have the following HTML: <!DOCTYPE html> <html lang="en"> <head> <title>test</title> </head> <body> <div style="height:100%;background: url('https://apprecs.org/ios/images/app-icons/256/90/1097333136.jpg') 100% 0 no-repeat / 4%;"> <p> bob Is The best! </p> </div> </body> </html> The image displays well but when I go to the HTML validator I get an error: Error: CSS: background: / is an incorrect operator. If I remove that / then the image doesn't appear. What is the correct way? 回答1: If we