| 1234567891011121314151617181920212223242526272829303132333435363738 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        .one{            background-color: grey;        }        .float {            float: left;            background-color: brown;            /*height: 90px;*/            width: 300px;        }        .detail {            background-color: green;            height: 80px;            /*width: apx;*/            float: left;        }        /*.content {*/            /*height: 60px;*/            /*background-color: #0D3349;*/        /*}*/    </style></head><body><div class="one">    <div class="float">        <div class="detail"></div>    </div>    <div class="content"></div></div></body></html>
 |