JavaScript console styling
optional topic about making the console look good
Last updated
optional topic about making the console look good
Last updated
Earlier we looked at the console but now we can enhance our experience with it when we making logs to it, like this:
We can actually style how the messages appear in the console.log
appear for increased readability:
Simply, we use:
%c
to begin a "block" of log text with CSS
arguments (after the first argument) to write the CSS
If we have more %c
than arguments after the first argument, then the extra %c
will appear as plain text!
In general: