IE定位问题

时间:2010-04-09 08:40:03

标签: html css internet-explorer positioning

在IE浏览器的每个浏览器中,在euroworker.no/order上,“produkt”一词下的绿色小箭头位于我的div容器之上。为什么在世界上这不适用于IE?事实上,它在IE中的四个页面中有效,但在其他浏览器中都有四个页面。所有页面的构建都是相同的,但对于IE,它显示的东西比圆形框上方的20px。

任何想法的人?

文档类型:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

顶级prgress指标的CSS:

#checkoutProgress
{
    width: auto;
    padding-top: 1em;
    height: 30px;
    overflow:hidden;
    font-family: "Helvetica";
    font-size:18px;
    float:left;
/*  margin-bottom:22px;*/
    margin-left:0px;

}

#checkoutProgress a
{
    padding: 10px;
    /*border-width: 2px;
    margin-right: 20px;*/
    text-decoration:none;
    font-size: 17.26px;
    color:#dadada;
    text-transform:uppercase;

}

#checkoutProgress a:hover
{
    padding: 10px;
    /*border-width: 2px;
    margin-right: 20px;*/
    text-decoration:none;
    font-size: 17.26px;
    color:#818072;

}

/* completed steps */
#checkoutProgress a.completed
{
    border-color: #70D66D;

}

/* current step */
#checkoutProgress a.active
{
 /*   border-color: #ADD8E6;*/
    font-weight: bold;
/*background-color: #fffccc;
border-color: #ADD8E6;*/
background-image:url(../../upload/urhere_arr.png);
background-position:bottom center;
/*padding-left:15px;*/
color:#a3a398;
}

对于方框:

div #roundbigbox {
    background-image:url(../../upload/EW_p_og_L.png);
    background-position:top center;
    background-repeat:no-repeat;
    padding:5px;
    padding-top:10px;
    padding-bottom:0px;
    width:760px;
    height:1%;
    border-width:1px;
    border-color:#dddddd;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    z-index:1;
    position:relative;
    overflow:hidden;
    margin:0;
    margin-bottom:10px;
    }

fieldset css:

fieldset.container
{
    border: 0;
}

还有一些HTML:

<fieldset class="container">

    <div id="checkoutProgress" class="progressCart">

                <a href="/order" class=" active" id="progressCart"><span>Produkt</span></a>
                <a href="/checkout/selectAddress" class="completed " id="progressAddress"><span>kunde info</span></a>


                <a href="/checkout/shipping" class="completed " id="progressShipping"><span>Leveringsmåte</span></a>

                <a href="/checkout/pay" class="" id="progressPayment"><span>Betaling & Fullfør</span><</a>
            </div>

    </fieldset>         </div>



                <form action="/order... >

    <input type="hidden"...>
    <div id="roundbigbox">
    <p id="pro">Produkter</p>
    More content

    </div>

1 个答案:

答案 0 :(得分:1)

您的HTML片段显示格式不正确,有几个结尾标记没有匹配!

首先要做的是使用w3c validator验证您的XHTML(在严格的doctype中非常重要)。用IE注意的另一件事是随机空格 - 不要问我为什么,但要确保没有任何无关的空白。我认为,IE中的这些“随机”行为通常会引发这些问题。