blob: 2442048d8445f055032f39060b96ba31f156510e (
plain)
1
2
3
4
5
6
7
8
9
|
/*simple selector and simple rulset test*/
S1 {prop1 : value1}
/*Simple selector list and simple ruleset test*/
s1,s2 {color: black ; background: white}
/*descendants and child selector list, simple ruleset test*/
s1 s2, S3 > s4 {prop1 : value1 ; prop2 : value2}
|