为什么:之前在野生动物园中看不到?

时间:2013-08-01 09:11:04

标签: css css3 safari css-selectors

我有一个在Chrome中运行良好的代码:

#menu ul {
list-style-position: inside;
list-style-type: none;
display: block;
margin: 0 auto;
padding: 0;
}
#menu li {
font-size: 11px;
width: 95px;
display: inline-block;
vertical-align: top;
position: relative;
}
#menu li a {
color: black;
text-decoration: none;
}
#menu li a img {
opacity: 0;
filter: alpha(opacity=0);
-moz-opacity: 0;
position: absolute;
top: 0;
left: 22px;
margin: 0 auto;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
-ms-transition: opacity 0.2s linear;
}
#menu li a:hover img {
opacity: 1.0;
filter: alpha(opacity=100);
-moz-opacity: 1.0;
}
#menu li a:before {
content: "";
display: block;
background: url('../images/greece.gif') no-repeat center;
width: 50px;
height: 50px;
margin: 0 auto;
opacity: 1.0;
filter: alpha(opacity=100);
-moz-opacity: 1.0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
-ms-transition: opacity 0.2s linear;
}
#menu li.news a:before {
background: url('/images/menu/4.gif') no-repeat center;
}
#menu li a:hover:before {
opacity: 0;
filter: alpha(opacity=0);
-moz-opacity: 0
}
#menu li a span.image-title {
display: block;
padding: 5px;
}
#menu li:hover a, #menu li.current.active a {
color: red;
}

我不想使用这种疯狂的代码,但我没有别的办法因为我正在使用joomla 2.5

所以我得到的结果...... 在Firefox中不起作用的不透明度。不,它工作,但以一种奇怪的方式......忍耐。

在Safari中:之前根本没有显示!

Web-site with this problem(不是广告)。

2 个答案:

答案 0 :(得分:2)

检查一下:http://caniuse.com/#feat=css-gencontent并检查“已知问题”标签。 Safari浏览器不支持伪元素的转换。我昨天面临同样的问题。

答案 1 :(得分:2)

只需添加位置:绝对

a:before{
position:absolute;
content:"";
top: 0px;
left: 0px;
.....

并确保您在 a

上处于相对位置
#menu li a{
position:relative;
}

例如,这很好用

#menu li a:before {
content: "";
display: block;
background: url('../images/greece.gif') no-repeat center;
width: 50px;
height: 50px;
position: absolute;
opacity: 1.0;
filter: alpha(opacity=100);
-moz-opacity: 1.0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
-ms-transition: opacity 0.2s linear;
}

对于css3 dev box-sizing

非常重要
*, *:after, *:before  {
outline: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding:0;
margin:0;
}

:之前:之后总是位置:绝对且主要元素应为位置相对 < / p>