【发布时间】:2021-11-09 16:00:15
【问题描述】:
尝试将滚动到粘性标题时的背景颜色更改为无效。怎么做?当我滚动到正文的底部时,我需要更改标题背景颜色。怎么做?
app.component.html
<div class="header sticky">
</div>
app.component.css
.sticky {
position: -webkit-sticky;
position: sticky;
top: 0px;
}
演示:https://stackblitz.com/edit/sticky-header-hyibz9?file=app%2Fheader%2Fheader.component.css
【问题讨论】: