mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			No EOL
		
	
	
		
			390 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			No EOL
		
	
	
		
			390 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| .container {
 | |
|     display: grid;
 | |
|     background-color: lightsalmon;
 | |
| 
 | |
|     /* Invalid minmax value as can't have a flexible length as a minimum value. */
 | |
|     grid-template-columns: minmax(1fr, 100px) 1fr 1fr;
 | |
| }
 | |
| 
 | |
| .one {
 | |
|     background-color: lightblue;
 | |
| }
 | |
| 
 | |
| .two {
 | |
|     background-color: yellowgreen;
 | |
| }
 | |
| </style>
 | |
| <div class="container"><div class="one">1</div><div class="two">2</div></div> | 
