Same source multiple times with @import

Given t.css:

@import (u.css);
@import (v.css);

and u.css:

@import (v.css);

p { color: red; }

and v.css:

p { color: green; }

Should the color of p be red or green?

I will argue that it should be "red" because sheets are to be 
processed in order they are found (recursively into files) and if the 
same sheet is included twice the second inclusion is ignored.
__  __  __  __  __  __  __  __  __  __  __  __  __  __  __  __  __
 Mortar: Advanced Web Development      <http://mortar.bigpic.com/>
 Neil St.Laurent                     <mailto:stlaurent@bigpic.com>
 Big Picture Multimedia                            +1.403.265.8018

Received on Friday, 2 January 1998 16:43:50 UTC