float inline becomes block multiline inline box model : float « Layout « HTML / CSS






float inline becomes block multiline inline box model

 
<!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'>
                div {
                    margin: 10px;
                    background: #ccc;
                    height: 100px;
                }
                span#floated {
                    background: #aaa;
                    margin: 10px;
                    padding: 10px;
                    border: 1px solid black;
                    float: left;
                    width: 100px;
                }
                span#normal {
                    background: #ddd;
                    border: 1px solid black;
                    opacity: 0.7;
                }
            </style>
        </head>
        <body>
            <div>
                <span id='floated'>
                    This span is floated left.
                </span>
                <span id='normal'>
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                    The text of this span is beside the floated span.
                </span>
                This is extra text. This is extra text. This is extra text.
            </div>
        </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 highlighted, dimensions multiple paragraph
19.float inline becomes block
20.float inline becomes block with inline padding