问答详情
源自:13-4 起飞咯 - 浮动模型

为什么#div1{float:left}#{float:right}时第二个div上不去

<style>
div{
border:2px red solid;
width:200px;
height:400px;
}
#div1{float:left;}
#div2{float:right;}
</style>


提问者:小学生12 2016-05-01 20:27

个回答

  • 祯祺3362575
    2016-06-03 21:02:37

    应该是没点全屏显示吧

  • kpengfang
    2016-05-02 10:34:28

    <style>
       div{
           border:2px red solid;
           width:200px;
           height:400px;
       }
       #div1{float:left;}
       #div2{float:right;}
    </style>
    <div id="div1"></div>
    <div id="div2"></div>
    http://img.mukewang.com/5726bcae0001542713580615.jpg

  • 小学生12
    2016-05-01 20:48:48

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>浮动模型</title>
    <style type="text/css">
    div{
        border:2px red solid;
        width:200px;
        height:400px;
        
    }
    #div1{float:left;}
    #div2{float:right;}


    </style>
    </head>
    <body>
    <div id="div1">栏目1</div>
    <div id="div2">栏目2</div>
    </body>
    </html>

  • 风清扬20160430
    2016-05-01 20:40:50

    能贴一下html代码么?这样看不出来效果