mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 9b4cd0dab7
			
		
	
	
		9b4cd0dab7
		
	
	
	
	
		
			
			Fixes the issue that currently we do not consider table rows height while calculating min row height even if it is definite value.
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
| body {
 | |
|     display: table;
 | |
| }
 | |
| 
 | |
| .row {
 | |
|     display: table-row;
 | |
|     height: 100px;
 | |
| }
 | |
| 
 | |
| .cell {
 | |
|     display: table-cell;
 | |
|     border: 1px solid black;
 | |
|     width: 100px;
 | |
| }
 | |
| </style>
 | |
| <div class="row"><div class="cell"></div></div> |