1

在除 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">

最高进度指示器的 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;
    }

字段集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>

4

1 回答 1

1

您的 HTML 片段格式不正确,有几个结束和结束标记不匹配!

首先要做的是使用w3c 验证器验证您的 XHTML(在严格的文档类型中非常重要) 。使用 IE 时要注意的另一件事是随机空格 - 不要问我为什么,但请尝试确保没有任何无关的空格。我认为,IE 中的这种“随机”行为通常是这些问题的根源。

于 2010-04-09T08:55:24.410 回答