Posts: 2,630
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
The idea is to use a regular image tag for a background, then resize it to 100% height and width, at a fixed position, so that it doesn't move. You can't resize regular background images, which is why you must use an image tag.
You definitely don't need a table cell to do this, which I recommend you avoid for layout anyway.
The problem is, that IE6 doesn't support fixed positioning, so you need to work around that limitation by imitating fixed positioning in IE6. Here is how to do in in all the main browsers: http://www.htmlite.com/faq022.php . Once you get good at CSS you'll remember how this works.
|