To hide the scroll bar from a specific div block in Webflow, follow these straightforward steps to achieve the desired effect without relying on external custom CSS styles.
<style> tags that specifically targets the div block's class.
```css
<style>
.your-div-block-class {
-ms-overflow-style: none; / IE and Edge /
scrollbar-width: none; / Firefox /
}
.your-div-block-class::-webkit-scrollbar {
display: none; / Chrome, Safari, and Opera /
}
</style>
```
.your-div-block-class with the actual class name of your div block.
To hide the scroll bar from a specific div in Webflow, use a custom Embed element with CSS targeting the div's class. This method effectively removes the scroll bar in a cross-browser manner without relying on external stylesheets.