“JS Console.log Color” Ответ

JS -консольный журнал с цветом

console.log('%c Oh my heavens! ', 'background: #222; color: #bada55');
If-dev

JS Console.log Color

console.log('%c My txt ', 'My css');

// Example
console.log('%c Hello world ', 'background: #222; color: #bada55');
Attractive Ape

JavaScript Coloricized Console.log

// 1. Pass the css styles in an array
const styles = [
  'color: green',
  'background: yellow',
  'font-size: 30px',
  'border: 1px solid red',
  'text-shadow: 2px 2px black',
  'padding: 10px',
].join(';'); // 2. Concatenate the individual array item and concatenate them into a string separated by a semi-colon (;)

// 3. Pass the styles variable
console.log('%cHello There', styles);
Pudochu

Ответы похожие на “JS Console.log Color”

Вопросы похожие на “JS Console.log Color”

Больше похожих ответов на “JS Console.log Color” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования