如何让 html 元素在页面上另一个 html 对象的范围内保持可见?
我在页面上有一个报告列表。我目前在右侧有 4 个大按钮,用于查看、添加、编辑或删除按钮。我们收到过投诉,称人们在选择报告后必须向上滚动才能单击按钮,因为他们的报告太多了。
有没有办法让像 div 这样的 html 对象在滚动时在页面上保持可见?但是在网格容器的范围内呢?
谢谢
I have a list of reports on a page. I currently have 4 large buttons on the right to view, add, edit or delete a button. We've had complaints about people having to scroll back up to click on the buttons once they've selected a report because they have soo many.
Is there a way to have an html object like a div, stay visible on the page when you scroll it? But within the bounds of the container of the grid?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过通过 CSS 给按钮或其容器位置:固定?另一种方法是使用 onscroll Javascript 事件来移动它们或其容器。
Have you tried giving the buttons or their container position:fixed through CSS? Another way could be to use the onscroll Javascript event to move them or their container.