I am new to css and html and I am trying to recreate the behavior whereby a group is sticky and once it is sticky I add a bottom shadow. I manage to make the element sticky by applying this code:
<style>
#sticky-top {
position: sticky;
top: 0px;
z-index: 9999
}
</style>
but now I dont know where to start to add the shadow only when the group is stuck at the top. do you have an idea? thanks