Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在drupal上向下滚动,是否有可能该块也应该与页面一起滚动。因为我必须在节点上显示长结果并且我想滚动块以便用户每次都可以在左侧边栏上看到数据。
如果您不需要动画,您可以简单地使用“位置:固定”CSS 属性。
假设您的块距左侧 10px,距顶部 50px,它看起来像这样:
HTML
<div class="scrolling-block"> I can see you! </div>
CSS
.scrolling-block { position: fixed; left: 10px; top: 50px; }
另外,检查一下。 http://www.cssplay.co.uk/layouts/fixed.html