DEV Community

Discussion on: Better console.logs

Collapse
 
alexr89 profile image
Alex

Is it possible to console.log within a width, so for example the entire width of the console?

Collapse
 
nightdvlpr_50 profile image
Amir

Absolutely yes.
Just set display: block; & width: 100vw;

console.log('%c%s', 'display:block;width:100vw;background-color:#cff1de;color:green;font-size:25px','Hello Console!');