Вообщем есть страница.. есть тэг:

Выделить код

Код:

<td class="bg-tablemenu">

Класс описан так:

Выделить код

Код:

.bg-tablemenu {
	BACKGROUND-IMAGE: url(images/bg/bg-top2.gif);
	BACKGROUND-REPEAT: repeat-x;
	BACKGROUND-COLOR: #FFFFFF;
}

При попытки сохранить страницу на локальный диск файл "bg-top2.gif" не сохраняется и естественно страница не отображается правильно! :(

Можно сделать так:

Выделить код

Код:

<td background="main_files/images/bg/bg-top2.gif">

Тогда все ок! Но по стандарту это неправильно и валидатор ругается! :(

Посоветуйте люди добрые компромисс или решение этой проблемы!!?!?

NuLL
хм, возможно так:

Выделить код

Код:

<td background="/main_files/images/bg/bg-top2.gif">

как ругается то?

Примерно так:

Выделить код

Код:

# Error  Line 52 column 19: there is no attribute "BACKGROUND".

    <td background="main_files/images/bg/bg-top2.gif" height="146"><table cellSp

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

Никто не шарит чтоли?! :(

Не уверен, но вроде картинки, которые указаны в стилях не сохраняются (но кэшируются).
На background ругается потому что в указанной спецификации (DOCTYPE) нет атрибута background у тега td.
И ещё странно что про height ничего не сказал валидатор. Должна была быть та же ошибка, что и с background.