mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	 2b8c7faee4
			
		
	
	
		2b8c7faee4
		
	
	
	
	
		
			
			Inline content flows around the entire margin box of floating elements, not just the content box.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| <style>
 | |
| #b { 
 | |
|     border: 1px solid red;
 | |
|     width: 50px;
 | |
|     height: 50px;
 | |
|     float: left;
 | |
| }
 | |
| </style>
 | |
| </head>
 | |
| <body>
 | |
|     <div id=b></div>
 | |
|     <div id=a>Text</div>
 | |
| </body>
 | |
| </html>
 |