Difference between revisions of "CSS GUIDE FLOAT"
(→Usage Examples) |
(→See Also) |
||
(One intermediate revision by the same user not shown) | |||
Line 47: | Line 47: | ||
</head> | </head> | ||
<body> | <body> | ||
+ | <nowiki> | ||
<p> | <p> | ||
<b>HELLO!</b> | <b>HELLO!</b> | ||
Line 60: | Line 61: | ||
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> | </p> | ||
+ | </nowiki> | ||
</body> | </body> | ||
</html> | </html> | ||
Line 73: | Line 75: | ||
== See Also == | == See Also == | ||
− | |||
− |
Latest revision as of 17:18, 4 December 2006
This document is a work in progress and is subject to change.
Contents
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