This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The CSS
property specifies how an element should float. The CSS property specifies what elements can float beside the cleared element and on which side.The
property is used for positioning and formatting content e.g. let an image float left to the text in a container. The property can have one of the following values:In its simplest use, the
property can be used to wrap text around images.The following example specifies that an image should float to the right in a text:
img { float: right; }
The following example specifies that an image should float to the left in a text:
img { float: left; }
In the following example the image will be displayed just where it occurs in the text (float: none;):
img { float: none; }