Okay heres my file structure:
+WWW
- index.html
- style.css
- map.jpg
CSS:
HTML:
PROBLEM: map.jpg does not display in any browser (Firefox, Safari) Or TextMate Preview!
+WWW
- index.html
- style.css
- map.jpg
CSS:
Code:
body {
background: #000 url('map.jpg') repeat/repeat-x/repeat-y/no-repeat scroll/fixed top/center/bottom/x-%/x-pos left/center/right/y-%/y-pos;
}
Code:
<html> <head> <link rel="stylesheet" href="style.css" type="text/css" media="screen" title="no title" charset="utf-8"> </head> <body> </body> </html>
Comment