Tag sequence and floating : float layout « Layout « HTML / CSS






Tag sequence and floating

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title></title>
<style type="text/css" media="Screen">


* .floatingLeft {
  float: left;
  max-width: 350px;
  margin-left: 10px;
  background: pink;
}

* .floatingRight {
  float: right;
  max-width: 350px;
  margin-right: 10px;
  background: yellow;
}
</style>
</head>
<body>

<div id="postheader"> 
    <p class="floatingLeft">Floating Layout</p> 
    <p class="floatingRight">Postheader message 1</p> 

    
    <p class="floatingLeft">Floating Layout</p> 
    <p class="floatingRight">Postheader message 2</p> 
</div> 

</body>
</html>

 








Related examples in the same category

1.You can float any element using float:left or float:right.
2.A float element is removed from the normal flow.
3.Left floats indent adjacent content to the right,
4.right floats indent content to the left.
5.float left and margin left 34%
6.floats and percentage width
7.CSS: Left and right on the same line
8.Clearing Floats
9.When a float cannot fit next to another float, it moves down below it.
10.width sets the width of the float element.
11.height sets the height of the float.
12.height:auto is the default value and shrinkwraps the float to the height of all its child blocks or lines.
13.A positive margin pushes the float element away from its point of alignment
14.A positive margin pushes other floats and inline content away from it.
15.A negative margin pulls the float element to the other side of its point of alignment
16.A negative margin pulls other float elements and inline content closer.
17.Use width:auto, left:0, and right:0 to stretch an absolute element to the left and right sides of its closest positioned ancestor.
18.Use height:auto, top:0, and bottom:0 to stretch an absolute element to the top and bottom of its closest positioned ancestor.
19.Float Right - cleared right
20.Float Right - NOT cleared
21.Float and clear
22.Float from left one by one
23.Fluid Layout with float
24.If the floating left block is too high