MSNCodeSNIPPETS← msncode.dev
snippets/css

Hide Scrollbar but Keep Scroll

Hide the scrollbar while keeping scroll functionality

csscssscrollbarhide
CSS
scrollbar-width: none;
::-webkit-scrollbar { display: none; }

More css snippets

Fixed Aspect Ratio Box

Create a box with a fixed aspect ratio

Center with Flexbox

Center any element horizontally and vertically

Fluid Typography with clamp

Responsive font size that scales with viewport

CSS Grid Two Columns

Simple two-column layout with CSS Grid