mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			319 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			319 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| <title>:not() test</title>
 | |
| <style>
 | |
| div {
 | |
|     background: yellow;
 | |
| }
 | |
| 
 | |
| div:not(div div) {
 | |
|     background: lime;
 | |
| }
 | |
| </style>
 | |
| </head>
 | |
| <body>
 | |
|   <div>I am not a descendant and should be green.</div>
 | |
|   <div>
 | |
|     <div>I am a descendant and should be yellow.</div>
 | |
|   </div>
 | |
| </body>
 | |
| </html>
 | 
