float highlighted, dimensions multiple paragraph : float « Layout « HTML / CSS






float highlighted, dimensions multiple paragraph

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
   <html>
        <head>
            <title></title>
            <style type='text/css'>
        p#floated {
            float: left;
            border: 1px solid black;
            padding: 10px;
            width: 100px;
            background: rgb(218, 218, 218);
            margin: 10px;
        }
        p.normal {
            border: 1px solid black;
            background: rgb(248, 248, 248);
        }
            </style>
        </head>
        <body>
      <p id='floated'>
          This paragraph is floated left.
      </p>
      <p class='normal'>
          The text if this paragraph is beside the floated paragraph.
      </p>
      <p class='normal'>
          The text if this paragraph is beside the floated paragraph.
      </p>
        </body>
    </html>

 








Related examples in the same category

1.float left
2.float left and right
3.float left and right, three columns
4.float left and right with other content
5.float multiple floats
6.left float with padding
7.Positioning: float right and left
8.Using Float Positioning
9.Float H2 tag to left
10.Left float and right float
11.Set extra content to float left
12.Float left with text wrapper around
13.Float right with text wrapper around
14.nested float
15.float control: default margin padding
16.float extra box properties
17.float highlighted dimensions
18.float inline becomes block
19.float inline becomes block with inline padding
20.float inline becomes block multiline inline box model