Opera css bug,解决方法 - ?

时间:2011-10-31 16:10:25

标签: html css opera

我发现我的网络应用显示不正确 在Opera中因为以下错误:

#one {
    overflow: hidden;
    position: fixed;
    height: 100px;
    width: 100px;
}
#two {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: #ccc;
}

和html:

<div id="one">
    <div id="two"></div>
</div>

而不是占用整个视图端口#two在Opera中被#one剪切 有没有办法解决这个问题而不影响其他浏览器?

2 个答案:

答案 0 :(得分:2)

此错误已在Opera 11.60中修复,现在它的行为与其他浏览器完全相同。

http://jsfiddle.net/KPeYx/

答案 1 :(得分:-1)

使用只读选择器来定位Opera:

#one:read-only { overflow: auto; }