mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:12:43 +00:00 
			
		
		
		
	 2887976ce9
			
		
	
	
		2887976ce9
		
	
	
	
	
		
			
			This fixes an issue where `max-width: fit-content` (and other layout-dependent values) were treated as 0 on inline-blocks.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html><style>
 | |
|     span {
 | |
|         border: 1px solid black;
 | |
|         display: inline-block;
 | |
|         max-width: fit-content;
 | |
|     }
 | |
| </style><span>hello friends
 |