- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 07 Feb 2012 10:23:23 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-hierarchies In directory hutz:/tmp/cvs-serv13241 Modified Files: Overview.html Overview.src.html Log Message: Tweak example 4. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-hierarchies/Overview.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Overview.html 7 Feb 2012 10:12:10 -0000 1.11 +++ Overview.html 7 Feb 2012 10:23:21 -0000 1.12 @@ -309,10 +309,10 @@ <p>...produces the same results as the following CSS: <pre> -div .keyword {color:red;} -div .constant {color:red;} -p .keyword {color:red;} -p .constant {color:red;}</pre> +div .keyword, div .constant, p .keyword, p .constant { + color:red; +} + </pre> </div> <p>Multiple style rules can be embedded within a style rule. Style rules Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-hierarchies/Overview.src.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Overview.src.html 7 Feb 2012 10:12:10 -0000 1.12 +++ Overview.src.html 7 Feb 2012 10:23:21 -0000 1.13 @@ -192,10 +192,9 @@ <p>...produces the same results as the following CSS: <pre> -div .keyword {color:red;} -div .constant {color:red;} -p .keyword {color:red;} -p .constant {color:red;}</pre> +div .keyword, div .constant, p .keyword, p .constant { + color:red; +} </div> <p>Multiple style rules can be embedded within a style rule. Style rules can be embedded arbitrarily deeply. Embedded style rules and properties can both appear in a single declaration block, and in any order.</p>
Received on Tuesday, 7 February 2012 10:25:23 UTC