aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/test_class_helloworld.html
blob: f527c683b4ebf9932aef2c6f0d4bc5da3fb4fedd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
    <head>
        <style type="text/css">
            .c1 { color: red; }
            .c2 { background: blue; }
            #i1 { color: green; }
        </style>
    </head>
    <body>
        <div>
            <div id='i1'>Hello</div>
            <div class='c1'>World</div>
            <div class='c2'>Hello</div>
            <div class='c1 c2'>World</div>
        </div>
    </body>
</html>