Scroll-margin-top

How to add scroll-margin-top in webflow? I tried to add with custom CSS but it doesn’t work.

It looks like Webflow’s default JS is preventing scroll-margin-top from functioning properly.

Add the below script to allow scroll-margin-top to become functional again:

<!-- Replace Webflow's JS Smooth Scroll with CSS -->
<script>
  var Webflow = Webflow || [];
  Webflow.push(function() {
    $(document).off('click.wf-scroll');
  });
</script>
<style>
  html {
    scroll-behavior: smooth;
  }
</style>