我有一个div容器,当我开始最小化页面时,它具有响应的宽度和高度。它还具有最小宽度。我想添加一个浮动的动作按钮,是24px从底部和24px从右边的div容器。我尝试使容器的位置相对,而按钮的位置固定,但按钮仍然相对于视口。
我想做的事情在固定位置的情况下可能实现吗?
有没有其他方法来做到这一点,或者可能重新计算按钮的位置的基础上容器的宽度?
<div class="container">
<button class="button" type="button">
I want to be relative to my container and not the viewport
</button>
</div>
.container {
position: relative;
min-height:500px;
min-width: 1500px;
}
.button {
position: fixed;
bottom: 24px;
right: 24px;
}
2条答案
按热度按时间klh5stk11#
为什么按钮上没有
position: absolute
?zpqajqem2#
为了获得所需的效果,应该使用
position: absolute
而不是position: fixed
。MDN
position
CSS属性绝对定位的元素相对于它的 * 最近定位的祖先 * 定位(即,最近的祖先不是
static
)。固定定位与绝对定位类似,只是元素的包含块是 viewport 建立的初始包含块[即body
]