我一直在修补这个问题太久了,所以我在这里提出了问题。我试图在网页顶部有一个菜单栏。我的方法的问题是内容页面在菜单栏“后面”滚动,这会导致DataTable/FixedHeader出现问题。它不会在菜单中停止表格的标题,而是滚动到菜单并锁定在屏幕顶部。.
CSS看起来像这样
#header {
width:100%;
height:50px;
position: fixed;
top:0;
background-color:rgba(255,0,0,0.5);
}
#content {
background-color:rgba(0,0,255,0.5);
position: static;
margin-top: 50px;
}
我能做些什么来阻止表格一直向上滚动并且标题停止在菜单下方吗?