如何仅在我的另一个 div 中修复 div?
How to fix div only inside my another div?
** 仅用另一个 div 修复 **
这是我使用的代码...
HTML代码,
<div class="container">
<div class="fix">
Here fixed content
</div>
</div>
CSS代码,
.container{
display:flexbox;
height: 40em;
background-color: black;
}
.fix{
position: fixed;
width: 25em;
height: 30em;
background-color: beige;
}
@大师
已修复 页面上的工作地球仪。
如果你想在 "container" 工作,你应该使用 position:sticky 而不是 fixed
使元素的父容器有position: relative
<div class="parent">
<div class="child"></div>
</div>
.parent {
position: relative;
}
.child {
position: fixed;
margin-top: 30px;
margin-left: 30px;
}
** 仅用另一个 div 修复 **
这是我使用的代码... HTML代码,
<div class="container">
<div class="fix">
Here fixed content
</div>
</div>
CSS代码,
.container{
display:flexbox;
height: 40em;
background-color: black;
}
.fix{
position: fixed;
width: 25em;
height: 30em;
background-color: beige;
}
@大师 已修复 页面上的工作地球仪。 如果你想在 "container" 工作,你应该使用 position:sticky 而不是 fixed
使元素的父容器有position: relative
<div class="parent">
<div class="child"></div>
</div>
.parent {
position: relative;
}
.child {
position: fixed;
margin-top: 30px;
margin-left: 30px;
}