blob: 3f0a108cf414c3ad0372054924bea4b78d687894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
p > span { color: green; }
b { color: purple }
</style>
</head>
<body>
<div>
<span>This should not be green</span>
<p>
<span>This should be green</span><br/>
<b>This should be purple</b>
</p>
</div>
</body>
</html>
|