mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	 0dcc93ed3d
			
		
	
	
		0dcc93ed3d
		
	
	
	
	
		
			
			The file gap.html, which previously had multiple grid tests, has now been divided into smaller files, each containing only one grid test. It is going to make it easier to identify what inputs have been affected by changes in layout code.
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			270 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			270 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| .container {
 | |
|     display: grid;
 | |
|     background-color: lightsalmon;
 | |
|     grid-column-gap: 20px;
 | |
|     grid-template-columns: 1fr 1fr;
 | |
| }
 | |
| 
 | |
| .item {
 | |
|     background-color: palevioletred;
 | |
|     grid-column: 2;
 | |
| }
 | |
| </style><div class="container"><div class="item">1</div></div> |