paperlined.org
dev > web > formats > css
document updated 7 days ago, on Apr 12, 2025

quick solutions for CSS

make a <div> not take up the full width

width: fit-content;

center

margin: 0 auto;

rounded corners

border-radius: 20px;

drop shadow

filter: drop-shadow(10px 10px 4px #666);