Skip to content

Commit 1661323

Browse files
committed
[css2] Correction in example:
"UL > UL" will never match valid HTML. Instead, change to: "UL > LI > UL" --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401841
1 parent 36f73ce commit 1661323

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

css2/generate.src

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,9 @@ the same place in the style sheet.
13531353
<div class="example"><P>
13541354
<PRE>
13551355
UL { list-style: upper-roman inside } /* Any UL */
1356-
UL > UL { list-style: circle outside } /* Any UL child of a UL */
1356+
UL > LI > UL { list-style: circle outside } /* Any UL child
1357+
of an LI child
1358+
of a UL element */
13571359
</PRE>
13581360
</div>
13591361

0 commit comments

Comments
 (0)