Firefox条件评论CSS

时间:2010-03-15 11:27:09

标签: css firefox

我正试图定位一个按钮。我希望它在页面上的“GåVidere”按钮上方,它可以在Safari和Chrome中使用,但不适用于IE或FF。

#cartUpdate {
    position:absolute;
    width:160px;
    height:30px;
    left:580px;
    bottom:50px;
}

    {capture assign="cartUpdate"}

        <div id="cartUpdate"><!--<input type="submit" class="submit" value="{tn _update}" />-->
        <button type="submit" class="submit" id="oppdatersubmit" name="saveFields" title="Oppdater" value="">&nbsp;</button> </div>
    {/capture}
    {assign var="cartUpdate" value=$cartUpdate|@str_split:10000}
    {php}$GLOBALS['cartUpdate'] = $this->get_template_vars('cartUpdate'); $this->assign_by_ref('GLOBALS', $GLOBALS);{/php}

    {form action="controller=order action=update" method="POST" enctype="multipart/form-data" handle=$form id="cartItems"}

CONTENT


{/form}

可以在www.euroworker.no/order网站上看到(首先把东西放在篮子里(Kjøp和Handlevogn)

编辑:刚注意到我的后端编辑器已经停止更新.tpl文件..可能与它有关,根据FTP上的内容,几个小时都没有更新。只有一件事......

感谢。

4 个答案:

答案 0 :(得分:5)

尝试为所有属性使用-moz-前缀。

答案 1 :(得分:1)

您还可以尝试单独的CSS文件:

  <!-- IF NOT INTERNET EXPLORER THEN -->
  <![if !IE]>
  <!-- INCLUDE THIS CSS SHEET -->
    <link href="css/ff.css" rel="stylesheet" type="text/css" />
  <![endif]>

答案 2 :(得分:0)

因为@Neurofluxation条件注释最好处理IE的问题,因为你使用FF,只使用FF CSS作为默认值和IE样式表的条件,你也可以使用javascript调整你的CSS for Firefox你可以明确地说Firefox是我的浏览器使用这个样式表,但这是一个坏主意,因为javascript可以被禁用,你的网站布局不好。

答案 3 :(得分:0)

@-moz-document url-prefix() { selector { attr } }