HTML/CSS/JS 时间轴
CSS * { border: 0; box-sizing: border-box; margin: 0; padding: 0; } :root { --hue: 223; --bg: hsl(var(--hue),10%,90%); --fg: hsl(var(--hue),10%,10%); --primary: hsl(var(--hue),90%,...
CSS 渐变按钮
css: .gradient-btn { padding: 12px 24px; border: none; border-radius: 30px; color: white; font-size: 16px; font-weight: bold; cursor: pointer; margin: 10px; transition: all 0.3s ea...
CSS 设置卡片(card)样式
<!-- 墨桅博客 https://www.jetmast.com --> <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initia...
HTML/CSS 下雪效果
CSS body { height: 100vh; background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%); overflow: hidden; filter: drop-shadow(0 0 10px white); } .snow { position: absol...






