CSS GUIDE FLOAT

From CDOT Wiki
Revision as of 18:17, 4 December 2006 by Dtolj (talk | contribs) (Usage Examples)
Jump to: navigation, search

This document is a work in progress and is subject to change.

Summary

Float CSS property defines the position where an image or text will be located in another element.

Syntax

float: [number]

Legal Values

Value Description
left The image or text moves to the left of the parent element
right The image or text moves to the right of the parent element
none Image or text does not move and it appears at the same location

Mozilla Recommended Values

Usage Examples

<html>
 <head>
  <style type="text/css">
   b
   {
     font-size: 25px;
     float:right;
   }
  </style>
 </head>
 <body>
 
  <p>
    <b>HELLO!</b>
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
    This is some text. This is some text. This is some text.
  </p>
 
</body>
</html>

Notes

Specification Conformance

Browser Compatibility

Firefox,Netscape,Opera,IE

See Also

position