mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:12:43 +00:00 
			
		
		
		
	 62f15f94d2
			
		
	
	
		62f15f94d2
		
	
	
	
	
		
			
			Handle the clear property for floating boxes and add tracking for vertical clearence within an inline formatting context.
		
			
				
	
	
		
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			175 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			No EOL
		
	
	
		
			175 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
|   .a {
 | |
|     float: left;
 | |
|     width: 100px;
 | |
|   }
 | |
| 
 | |
|   br {
 | |
|     clear: left;
 | |
|   }
 | |
| </style>
 | |
| 
 | |
| <span class="a">A</span><span>1</span>
 | |
| <br>
 | |
| <span class="a">B</span><span>2</span> |