How can the scrollbar for a div be hidden in different browsers using CSS?

Here .founder-section is the class of the div.

/*For chrome, Safari, mozila*/
.founder-section::-webkit-scrollbar {
	display: none;
	/*height:0px;*/(Instead of display none we can use this code)
}
/* For firefox */
.founder-section {
	scrollbar-width:none;
}

Leave a comment

Your email address will not be published. Required fields are marked *