It works with CSS custom properties or variables. :root { --spacing: 0.5rem } .container { padding: calc(var(--spacing) * 2); } ...
確定! 回上一頁