Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 206 Bytes

variables.md

File metadata and controls

13 lines (11 loc) · 206 Bytes

Variables

Use JavaScript variables in your CSS templates.

const color = 'red';
const border = `${borderWidth}px solid red`;
const template = {
    color,
    border,
    background: '#eee',
}