- From: fantasai <fantasai.lists@inkedblade.net>
- Date: Tue, 30 Nov 2004 20:29:06 -0500
- To: www-style@w3.org
Staffan Måhlén wrote:
>
> Just to clarify your point above, how does the following cascade:
>
> default style:
> body {background-image: url(img1), url(img2); background-repeat: repeat-x, repeat-y}
>
> author style:
> body {background-repeat: no-repeat}
That would result in the same cascaded values as
body {
background-image: ulr(img1), url(img2);
background-repeat: no-repeat;
}
~fantasai
Received on Wednesday, 1 December 2004 00:56:55 UTC