私は固定位置で 2 つの div を使用し、サイズ変更後 - オペラは要素を再描画しません。
#wrapper{
position:fixed;
z-index:10000;
height: auto;
background-color: transparent;
margin: 0;
}
#label {
position: fixed;
bottom:0px;
left: 50%;
background-color: transparent;
z-index: 9999999;
height: 40px;
width: 200px;
border: 1px solid red;
margin-left:-100px;
}
<div id="wrapper">
<div id="label">content</div>
</div>
ここでこのバグを見ることができます
Opera ブラウザにページをロードして、ウィンドウのサイズを変更するだけです。
助けてください