Code screenshot

用 CSS 轉換 SVG 顏色

而家做網頁時好多時都需要做 light/dark mode,除咗轉 text 顏色 仲要轉埋 icon 顏色,唔想下下改 src,可以用 CSS value: currentColor 去改變 SVG fill property,只要喺 parent dom 比個 color: red, svg fill color 就會跟個值改變,仲可以配合 transition / animation 玩。 See the Pen CSS SVG fill color by littlecodeguy (@littlecodeguy) on CodePen.

July 13, 2022 · 1 min · 41 words · Me
Code screenshot

HTML + CSS Progress Bar

大家知唔知原來 HTML 有 progress bar element <progress />,仲可以配合新嘅 CSS accent-color property 去做 customization。 See the Pen progress bar with pure HTML + CSS by littlecodeguy (@littlecodeguy) on CodePen.

July 12, 2022 · 1 min · 28 words · Me
Code screenshot

css 一行 reset 所有 element properties

button { all: unset; } See the Pen css all unset by littlecodeguy (@littlecodeguy) on CodePen.

July 4, 2022 · 1 min · 16 words · Me