what is float css code example

Example 1: float none css

.titanic {
  		float: none;
}

Example 2: Float element should has parent element that defined clear property.

.clearfix::after { 
   content: " ";
   display: block; 
   height: 0; 
   clear: both;
}

Example 3: how to clear floats

This is the code 

.float-wrapper::after {
  content: "";
  clear: both;
  display: block;
}
---------------------------------------------------------------
Explanation:

.float-wrapper -> is some parent element that wraps the floating items

example:
<div class='float-wrapper'>
     <div class='floating-item'> </div>
     <div class='floating-item'> </div> 
     ....
 </div>

::after  adds  an element after the .float-wrapper, that 
has no content and clears floats from the both sides, making sure, 
other sections are not affected by floats

Example 4: css floaat

.myelement {
	float: left;
}

Tags:

Css Example