Skip to content

Instantly share code, notes, and snippets.

@xgqfrms-GitHub
Last active June 3, 2017 15:15
Show Gist options
  • Save xgqfrms-GitHub/5d022a13292c615d2730e84d909e1aba to your computer and use it in GitHub Desktop.
Save xgqfrms-GitHub/5d022a13292c615d2730e84d909e1aba to your computer and use it in GitHub Desktop.
css-variables
@xgqfrms-GitHub
Copy link
Author

color console.log() & ES6 Template literals 模板字面量

let x_css = `
    color: red; 
    font-size: 32px;
`;
console.log(`%c xcp.style\n`, x_css, xcp.style);
console.log(`%c xcp.style\n`, `${x_css}`, xcp.style);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment