gpt4 book ai didi

css - 歌剧位置固定到固定元素并调整错误大小?

转载 作者:行者123 更新时间:2023-11-28 13:14:25 25 4
gpt4 key购买 nike

我使用了 2 个具有固定定位的 div,并且在调整大小后 - opera 不会重绘元素。

#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>

你可以在这里看到这个错误

http://jsfiddle.net/6Cm6J/1/

只需在 Opera 浏览器中加载页面并调整窗口大小。

请帮忙

最佳答案

写这个css

Live Demo

CSS

#wrapper{
position:fixed;
z-index:10000;
height: auto;
background-color: transparent;
margin: 0;
bottom:0;
left:0;
right:0;
}

#label {
position: relative;
bottom:0px;
left: 50%;
background-color: transparent;
height: 40px;
width: 200px;
border: 1px solid red;
margin-left:-100px;
}

关于css - 歌剧位置固定到固定元素并调整错误大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15156769/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com