CSS Hide scrollbars .divnamehere { -ms-overflow-style: none; scrollbar-width: none; overflow-y: scroll; } hides scrollbars on all devices
CSS Disable scrolling .divnamehere { overflow-x: hidden; } overflow-y, and overflow works too
CSS Scrollbar colors .divnamehere { scrollbar-color: #COLOR1 #COLOR2; } 1st color changes inner scrollbar, 2nd color changes background color
CSS Pixelated rendering body { image-rendering: pixelated; } Makes your website images pixelated, instead of blurry like normal