# Container level scrolling

**URL:** https://community.glideapps.com/t/container-level-scrolling/72100
**Category:** Ask for Help
**Tags:** custom-css
**Created:** [March 27, 2024, 5:16pm UTC](https://community.glideapps.com/t/container-level-scrolling/72100 "2024-03-27T17:16:41Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![tuzin](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/tuzin/32/86077_2.png) [@tuzin](https://community.glideapps.com/u/tuzin)
#### Post date: [March 28, 2024, 7:49am UTC](https://community.glideapps.com/t/container-level-scrolling/72100/5 "2024-03-28T07:49:05Z")

</div>

Sure! Thanks for the ping @Darren_Murphy

Give your container a classname `stickytop` and paste this into custom CSS:

```auto
.stickytop {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 999;
  margin-top: 0px;
}

```

---

_[View the full topic](https://community.glideapps.com/t/container-level-scrolling/72100)._
