作者:冬眠2502917261 | 来源:互联网 | 2022-10-13 17:19
1> Loïc Bellema..:
位置fixed
无效,因为它总是相对于页面。您想将元素嵌套在另一个具有position的组件中relative
。内部元素将基于该父元素定位。
.top-container {
position: relative;
width: 20rem;
border: 1px solid grey;
}
.container {
padding: 1rem 1rem;
overflow-x: auto;
margin: 0;
}
.top-container button {
position: absolute;
right: 0;
top: 0;
}
Long piece of content that overflows the width of container