CSS Float
What is CSS Float?
With CSS float, an element can be pushed to the left or right,
allowing other elements to wrap around it.
Float is very often used for images, but it is also useful when working
with layouts.
How Elements Float
Elements are floated horizontally, this means that an element can only be
floated left or right, not up or down.
A floated element will move as far to the left or right as it can. Usually
this means all the way to the left or right of the containing element.
The elements after the floating element will flow around it.
The elements before the floating element will not be affected.
If an image is floated to the right, a following text flows
around it, to the left:
Floating Elements Next to Each Other
If you place several floating elements after each other, they will float
next to each other if there is room.
Here we have made an image gallery using the float property:
Example
.thumbnail
{
float:left;
width:110px;
height:90px;
margin:5px;
} |
Try it yourself »
|
Turning off Float - Using Clear
Elements after the floating element will flow around it. To avoid this, use
the clear property.
The clear property specifies which sides of an element other floating elements are not allowed.
Add a text line into the image gallery, using the clear property:
 |
More Examples |
A simple use of the float property
Let an image float to the right in a paragraph.
An image with border and margins that floats to the right in a paragraph
Let an image float to the right in a paragraph. Add border and margins to the image.
An image with a caption that floats to the right
Let an image with a caption float to the right.
Let the first letter of a paragraph float to the left
Let the first letter of a paragraph float to the left and style the letter.
Creating a horizontal menu
Use float with a list of hyperlinks to create a horizontal menu.
Creating a homepage without tables
Use float to create a homepage with a header, footer, left content and main content.
All CSS Float Properties
The number in the "CSS" column indicates in which CSS version
the property is defined (CSS1 or CSS2).
| Property |
Description |
Values |
CSS |
| clear |
Specifies which sides of an element where other floating elements are not allowed |
left
right
both
none
inherit |
1 |
| float |
Specifies whether or not a box should float |
left
right
none
inherit |
1 |

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
New features in Version 2010!
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|