使用CSS定位属性将背景图片固定在页面上方,并在表格样式中添加overflow-y:scroll属性以实现表格滚动。
示例代码如下:
HTML:
...
CSS:
.wrapper {
position: relative;
}
.header {
background-image: url('header-bg.jpg');
background-repeat: no-repeat;
background-position: top;
height: 100px;
}
.table-wrapper {
position: relative;
height: 300px;
overflow-y: scroll;
}
table {
width: 100%;
}
下一篇:背景图像未显示