444 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			444 B
		
	
	
	
	
	
	
	
title
| title | 
|---|
| Float Property | 
Float Property
The float property allows an element to float to the left or right of another element. A primary use of float is to have an image on the left or right of a block of text.
.my-element {
  float: left;
  float: right;
  float: inline-start;
  float: inline-end;
  float: none;
}