Div在FF或IE中无法正确显示

时间:2015-03-16 14:33:12

标签: html css internet-explorer firefox

我正在一个网站上工作,我在主页上设置div可点击并具有图像背景。

主页在Chrome中正确显示文本背后的不透明度div,但在FireFox和Internet Explorer中,您无法看到不透明度div,文本位于div的顶部。

<div id="main" class="site<?php if ( $with_sidebar ) : ?> site-with-sidebar<?php endif; ?>">
<div id="content" class="site-content">     
<!----Home Content START---->
        <div style="width: 980px; overflow: auto;">
                        <div  onclick="window.location='/portfolio/architecture/architecture/';" id="item1" style="width:453px; height:400px; background-image:url('http://jeremy.insctest1.com/wp-content/uploads/2015/02/arch-home.png'); float: left; margin: 0 20px 20px 0;">

                <div class="item-title" style="width:inherit; position: relative; top:350px; height: 50px; background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgba(232,232,232,0.8)), color-stop(1, rgba(214,214,214,0.8)) ); display: table-cell; vertical-align: middle;" >

                <center> Architecture </center>
                </a>
                </div>
            </div>

2 个答案:

答案 0 :(得分:1)

这是因为您的后台容器使用特定于供应商的前缀样式-webkit-gradient,FF和IE将忽略该样式。这个问题(Linear-gradient works only with -moz vendor prefix)将为您提供正确实现渐变所需的所有供应商前缀。

答案 1 :(得分:0)

您的渐变只是设置为webkit浏览器。您需要包含其他前缀和IE的后备&lt; 10.更多信息:https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient