aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/html/test_class_helloworld.html
blob: 5ffd6074c0313e9085fbc9b48d6447209c6d35cc (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>