Sent by Jean-François Bastien on 8 January 2003 21:09
Kevin Smith wrote:
>
> I'm not following you. Given the following style sheet, Opera 5 for Mac
> renders div#foo & div#bar identically (red text with a black border and
> green background), while div#baz picks up no styles at all.
>
> /*/*/a{}
> #foo {
> border:3px solid #000;
> color:red;
> background:green;
> }
> /* */
> #bar {
> color:red;
> /*/*/
> border:3px solid #000;
> background:green;
> /* */
> }
> /*/*/
> #baz {
> border:3px solid #000;
> color:red;
> background:green;
> }
> /* */
>
> Does that answer your question?
>
What I meant is, were I to have:
--------------------
#bar {
color:red;
/*/*/
border:3px solid #000;
background:green;
/* */
}
#baz {
border:3px solid #000;
color:red;
background:green;
}
--------------------
Would baz render properly?