Difference between revisions of "CSS GUIDE FLOAT"

From CDOT Wiki
Jump to: navigation, search
 
(Usage Examples)
Line 37: Line 37:
  
 
  <html>
 
  <html>
<head>
+
  <head>
  <style type="text/css">
+
  <style type="text/css">
  div.x{
+
     img
     position:absolute;
+
     {
     left:0px;
+
      float:right
    top:0px;
+
     }
     font-size:80px;
+
   </style>
    z-index:-1;
+
  </head>
  }
+
  <body>
   div.y{
+
  <img src="logocss.gif" width="95" height="84" />
    position:absolute;
+
    This is some text. This is some text. This is some text.
    left:0px;
+
    This is some text. This is some text. This is some text.
    top:10px;
+
    This is some text. This is some text. This is some text.
    font-size:80px;
+
    This is some text. This is some text. This is some text.
    color:red;
+
    This is some text. This is some text. This is some text.
    z-index:1;
+
    This is some text. This is some text. This is some text.
  }
+
    This is some text. This is some text. This is some text.
  </style>
+
    This is some text. This is some text. This is some text.
</head>
+
    This is some text. This is some text. This is some text.
<nowiki>
+
    This is some text. This is some text. This is some text.
<body>
+
</p>
  <div class="x">LAYER 1</div>
 
  <div class="y">LAYER 2</div>
 
 
  </body>
 
  </body>
</nowiki>
 
 
  </html>
 
  </html>
  

Revision as of 18:12, 4 December 2006

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">
   img 
   {
     float:right
   }
  </style>
 </head>
 <body>
  <img src="logocss.gif" width="95" height="84" />
   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