When I click the "Save As" button in Firefox, Chrome or IE, then select "Web Page, Finish" from the "Save As" menu, it does not seem to save the background images defined in my CSS. Am I doing something wrong? Here is an example of a problem:
test.html
<!DOCTYPE HTML> <html lang="en-US"> <head> <link href="test.css" rel="stylesheet" media="screen" type="text/css" /> </head> <body> <div id="test"></div> </body> </html>
test.css
#test { width: 400px; height: 400px; background: url(img/bg.jpg) }
html css google-chrome
captainclam
source share