Mirari
Accès à un fichier
File: col1.htm - Tab length: 1 2 4 8 - Lines: on off - No wrap: on off

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="application/xhtml+xml;charset=UTF-8" />
        <title>Column Layout Test</title>
        <style type="text/css">
            body
            {
                padding : 16px;
                margin  : 0px;
            }

            div.container
            {
                border  : 4px solid black;
            }

            div.columns
            {
                border  : 4px solid red;
            }

            div.columns div.left
            {
                border  : 4px solid blue;
                float   : left;
                width   : 150px;
            }

            div.columns div.right
            {
                border  : 4px solid green;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="columns">
                <div class="left">left</div>
                <div class="right" style="height:400px;">right</div>
            </div>
        </div>
    </body>
</html>

Cet affichage est obtenu après traitement par le site et peut ne pas correspondre à l'état original du fichier
© r3c 2011 :: 2 ms