CSS float
Also see the full, alphabetical list of CSS properties
The CSS float property is used for positioning elements. It specifies whether to float a box to the left or right of other elements, or not at all. This can assist in achieving advanced layouts similar to those of magazines and newspapers.
Also see the CSS clear property.
| Syntax: | float: <value>; |
| Possible Values: |
|
| Initial Value: | none |
| Applies to: | All except for positioned elements and generated content |
| Inherited: | No |
| Media: | Visual |
| Example: |
h1 { float: left }
|
| Try it yourself! |
|

