background image from linked css won't show

asator

New Member
While working on my HTML layout and tweaking my CSS in the head of my document the following worked fine:\[code\]html{background:url("gfx/green_tile.gif");}\[/code\]Then I moved my CSS to a linked stylesheet in my css folder.Here's my file structure
  • index.html
  • gfx
    • green_tile.gif
  • css
    • custom.css
Note: I've tried the following too\[code\]html{background:url("../gfx/green_tile.gif");}html{background-image:url(...);}\[/code\]
 
Back
Top