IE8 中 CSS3Pie alpha 继承的问题
我有一些像这样的标记
<div class="background">
<ul>
<li class="tab">tab</li>
<li class="tab">tab</li>
<li class="tab">tab</li>
<li class="tab">tab</li>
</ul>
</div>
使用css3pie我有一个带有rgba透明度的背景,但背景的alpha仅级联到ie8中的选项卡。
有谁知道我如何停止这种继承,或者 css3pie 中是否有一些我需要做的配置来停止这种继承?
I have some markup kind of like this
<div class="background">
<ul>
<li class="tab">tab</li>
<li class="tab">tab</li>
<li class="tab">tab</li>
<li class="tab">tab</li>
</ul>
</div>
Using css3pie I have a the background with an rgba transparency but the alpha from the background is cascading down to the tabs in ie8 only.
Does anyone know how I can stop that inheritance or if there is some configuration in css3pie that I need to do to stop that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项卡上的位置需要设置为
position:relative
The position needed to be set to
position: relative
on the tabs