Scott Haneda wrote:
>> the only suggestion i have is to be sure you're declaring your style right.
>>
>> <style type="text/css">
>> /* stuff */
>> </style>
>>
>> i guess another thing might be to declare the background properties in
>> the order set forth by the w3c.
> 
> Ok, did all that, even took it to the most basic:
>     body {
>         background-color: red;
>         background-image: url(yel.jpg); 
>         background-repeat: no-repeat;
> 
>     }
> 
> Yel.jpg is a 20x100 image, I end up with a 100% yellow page, which the image
> is made of yellow. Yet I have no repeat set, so making even less sense

Don't forget to enclose your style in comments if embedded in the document:

<style type="text/css">
<!--

body {
        background-color: red;
        background-image: url(yel.jpg);
        background-repeat: no-repeat;
        
}

-->
</style>

And set a DocType. You never know.

-Daniel
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to