mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								<html lang="en">
							 | 
						||
| 
								 | 
							
								<style>
							 | 
						||
| 
								 | 
							
								    div {
							 | 
						||
| 
								 | 
							
								        width: 100px;
							 | 
						||
| 
								 | 
							
								        height: 100px;
							 | 
						||
| 
								 | 
							
								        border: 1px solid black;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								    div:lang(en) {
							 | 
						||
| 
								 | 
							
								        background-color: red;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								    div:lang("fr",de) {
							 | 
						||
| 
								 | 
							
								        background-color: blue;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								</style>
							 | 
						||
| 
								 | 
							
								<div>Red</div>
							 | 
						||
| 
								 | 
							
								<div lang="fr">Blue</div>
							 | 
						||
| 
								 | 
							
								<div lang="de">Blue</div>
							 | 
						||
| 
								 | 
							
								</html>
							 |