Recipe 16.1

Styling Console Output

Demo

Open the console to see output.

Code

JavaScript
console.log('%cHello world!', 'font-size: 2rem; color: red;');
console.log('This console message uses %cstyled text. %cCool!', 'font-style: italic;', 'font-weight: bold;');
HTML
Open the console to see output.
Web API Cookbook
Joe Attardi