mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| <head>
 | |
| <title>:first-child test</title>
 | |
| <style>
 | |
| p:first-child {
 | |
|   color: lime;
 | |
|   background-color: black;
 | |
|   padding: 5px;
 | |
| }
 | |
| </style>
 | |
| </head>
 | |
| <body>
 | |
| <div>
 | |
|   <p>This text is selected!</p>
 | |
|   <p>This text isn't selected.</p>
 | |
| </div>
 | |
| 
 | |
| <div>
 | |
|   <h2>This text isn't selected: it's not a `p`.</h2>
 | |
|   <p>This text isn't selected.</p>
 | |
| </div>
 | |
| 
 | |
| </body>
 | |
| </html>
 | 
