开发者

Space between two div's in IE

开发者 https://www.devze.com 2023-01-20 10:46 出处:网络
I have a strange problem between two div\'s , there is a space below the top div which only shows in IE8. Although I am using IE8 at home I don\'t see it, but at other places I do.

I have a strange problem between two div's , there is a space below the top div which only shows in IE8. Although I am using IE8 at home I don't see it, but at other places I do.

Image in IE (red is the space that shouldn't be there):

Space between two div's in IE

In firefox and every other browser it shows fine as shown below:

Space between two div's in IE

 <div id="top">

<form action="" onsubmit="">

    <table >

    <tr>

    <td>
    Name<input type="text" />
    </td>


    <td>
    Password<input type="password" />               
    </td>

    <td>

    </td>             

    </tr>


   </table>

   </form>

 </div>

  <div id="header">

    </div>


#top
{
    margin-right: auto;
    margin-left: auto;
    margin-top: 0px;
    background-color: #000000; 
    top: 0px;
    text-align: center;
    font-size: 16px;
}
#header
{   
    width: 100%;
    height: 100px;
    background-color: #336699;  
    marg开发者_JAVA技巧in: 0px;
    padding: 0px;
}

I have tried floating both div's but I cannot seem to get it working.

Any advice? Thanks


Set the margin of all form elements to 0px:

form
{
    margin: 0px;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消