mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:12:46 +00:00 
			
		
		
		
	 2a1e58f8cc
			
		
	
	
		2a1e58f8cc
		
	
	
	
	
		
			
			Previously, the minimum height of a table row was calculated based on the automatic height of the cells inner layout. This change makes computed height of a cell boxes also be considered if it has definite value.
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| body {
 | |
|     display: table;
 | |
| }
 | |
| 
 | |
| .row {
 | |
|     display: table-row;
 | |
| }
 | |
| 
 | |
| .cell {
 | |
|     display: table-cell;
 | |
|     border: 1px solid black;
 | |
|     width: 100px;
 | |
|     height: 100px;
 | |
| }
 | |
| </style>
 | |
| <div class="row"><div class="cell"></div></div> |