1365162-1.html (285B)
1 <!DOCTYPE html> 2 <style> 3 p { color: red; } 4 p:lang(zh) { color: green; } 5 div:lang(zh) + p { color: green; } 6 </style> 7 <body onload="document.querySelector('div').lang = 'zh'"> 8 <div lang="en"> 9 <div> 10 <p>This text should be green.</p> 11 </div> 12 </div> 13 <p>This text should be green.</p>