CSS共4篇
HTML/CSS/JS 时间轴 -墨桅博客

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%,...
墨桅的头像-墨桅博客站点会员墨桅7天前
0309
CSS 渐变按钮-墨桅博客

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...
墨桅的头像-墨桅博客站点会员墨桅7天前
0405
CSS 设置卡片(card)样式 -墨桅博客

CSS 设置卡片(card)样式 

<!-- 墨桅博客 https://www.jetmast.com --> <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initia...
墨桅的头像-墨桅博客站点会员墨桅7天前
0408
HTML/CSS 下雪效果 -墨桅博客

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...
墨桅的头像-墨桅博客站点会员墨桅7天前
04813