1. 论坛系统升级为Xenforo,欢迎大家测试!
    Dismiss Notice

求助

Discussion in '新人报道' started by guduhanyang, Mar 1, 2008.

  1. guduhanyang

    guduhanyang New Member

    Joined:
    Feb 28, 2008
    Messages:
    2
    Likes Received:
    0
    <html><head><title>css</title><style type="text/css">
    #up {background-color:red;width:100px;height:100px;float:left;}
    #down {background-color:red;width:100px;height:100px;clear:left;margin-top:10px;float:left;}

    #right {background-color:red;width:100px;height:210px;float:left;margin-left:10px;}
    </style>
    </head>
    <body>

    <div id="up"></div>




    <div id="down"></div>


    <div id="right"></div>

    </body>
    </html>


    以上代码是在ie 7里面可以正常显示,但在ff里就显得不正常了,应该怎么改啊!
     
    #1 guduhanyang, Mar 1, 2008
    Last edited: Mar 3, 2008
  2. laogui

    laogui Administrator
    Staff Member

    Joined:
    Aug 30, 2005
    Messages:
    15,216
    Likes Received:
    35
    加个left层吧
    HTML:
    <html><head><title>css</title><style type="text/css">
    #left {float:left;}
    #up {background-color:red;width:100px;height:100px;float:left;}
    #down {background-color:red;width:100px;height:100px;clear:left;margin-top:10px;float:left;}
    #right {background-color:red;width:100px;height:210px;float:left;margin-left:10px;}
    </style>
    </head>
    <body>
    
    <div id="left">
    <div id="up"></div>
    <div id="down"></div>
    </div>
    
    
    <div id="right"></div>
    
    </body>
    </html>
    
     
  3. wuhao

    wuhao New Member

    Joined:
    May 23, 2006
    Messages:
    265
    Likes Received:
    0