MSNCodeSNIPPETS← msncode.dev
snippets/css

Truncate Text with Ellipsis

Cut off long text with three dots

csscsstexttruncate
CSS
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

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