mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	 9c72807976
			
		
	
	
		9c72807976
		
	
	
	
	
		
			
			Named line placement now works when auto-fill or auto-fit is used to define grid columns.
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			352 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			352 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html><html lang="en"><style>
 | |
| .grid-container {
 | |
|     display: grid;
 | |
|     grid-template-columns: [start] repeat(auto-fill, minmax(100px, 1fr)) [end];
 | |
| }
 | |
| 
 | |
| .grid-item {
 | |
|     grid-column: start / end;
 | |
|     background-color: lightblue;
 | |
|     padding: 20px;
 | |
|     text-align: center;
 | |
| }
 | |
| </style><div class="grid-container"><div class="grid-item">1</div></div> |