mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			371 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html><html><head><style>
 | |
|   * {
 | |
|     border: 1px solid black !important;
 | |
|   }
 | |
|   body {
 | |
|     float: left;
 | |
|   }
 | |
|   .grid {
 | |
|     display: grid;
 | |
|     grid-template-areas: "foo whee";
 | |
|     grid-template-columns: min-content minmax(0, auto) min-content;
 | |
|   }
 | |
|   .whee {
 | |
|     grid-area: whee;
 | |
|     background: pink;
 | |
|   }
 | |
| </style></head><body><div class="grid"><div class="whee">whee | 
