- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
float
March 14, 2016
Float is a CSS positioning property. Float is used for wrapping text around images, web page elements/blocks arrangement, creating the page alignment. It specifies whether or not an element should float.
Here is an example of float property in css code:
img { float: right; }
You can check images below to see how float looks like on the site. Image with the float left property:

Right aligned image:

The float property can accept one of the following properties:
Float left indicates that content must float on the left side of the parent element.
Right. The element floats to the right.
None is a default value, indicating that element must not float.
Initial value allows you to set property to its default value.
Inherit. Inherits the element float from the parent item.
Unset float is used in case initial property is not inherited.